Closed
Description
I think it would be worthwhile adding an entry for
At present, the only mention of it is right at the bottom of the entry for $.cssHooks, and so it's very easy to miss.
The main reason I think it might be a useful addition is for anyone wondering why setting the line-height style without a value does not give the same results as setting the font-size style without a value, e.g.:
var size = 10;
el.css({ fontSize:size, lineHeight:size });
Personally, I'd add it to both the "CSS" and "Mainpulation -> Style Properties" categories, as those would be the places I'd be looking if I had the aforementioned issue.