Flash textfields styling with CSS line-height

Flash textfields doesn’t support css line-height property. But they do support property “leading”. Default value for leading is 0.

So for smaller line-height between lines of textfield you have to set leading on a css -style to negative values and vice versa for bigger line-height.

Something like this for decreased line-height:

.mystyle{
leading:-2px;
}

Leave a Reply