Reply to thread

Line-height is messed up when saving style properties in WebDav.


Example: this is code in .css file that I'm saving:

[code]

  #SignupButton .inner

   {

     @property "signupButtonInner";

     height: 34px;

     line-height: 34px;

     @property "/signupButtonInner";

   }

[/code]

and this is css output in browser:

[code]

#SignupButton .inner

{

line-

line-height: 34px;

height: 34px;


}

[/code]

It it happening only if height is before line-height.


Back
Top Bottom