Fix the css style font test
Setting the font: shorthand to something like smaller is not in line with the css spec. Just set the font-size: property for this. Also fix the other font: shorthand to specify size and family according to the css spec.
This commit is contained in:
@ -1,7 +1,7 @@
|
||||
box {
|
||||
font: "Comic Sans 10";
|
||||
font: 10px "Comic Sans";
|
||||
}
|
||||
|
||||
label {
|
||||
font: smaller;
|
||||
font-size: smaller;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user