Is this valid? font: bold 10px/13px inherit;
According to my reading of the specs that should mean a font-weight of 'bold', a font-family of 'inherit', a font-size of '10px', and a line-height of '13px'.
It appears to work correctly in Internet Explorer 8 (8.0.6001.18702).
It works correctly in Safari 5.0.4 (7533.20.27) on Windows.
Opera 11.01 (build 1190) and Firefox 3.6.16 both log errors about it.
I haven't tried Chrome or Firefox 4 yet.
If this is indeed supposed to be valied is this parsing bug a known issue?
A couple extra points:
- The W3 validator also reports this as being invalid.
- None of 'font: bold 10px inherit;', 'font: bold 10px/13px;', or 'font: bold 10px;' work correctly in firefox here either.
Update
As pointed out by Adam Wagner in his answer my attempted value is in fact not valid (despite what my naive reading of the spec suggested) due to § C.3.1 of the CSS2.1 spec.