1 Style as specified in the style element:
2 .one { display: block; }
3 .two { display: inline; }
4 .three { display: list-item; list-style-type: square; margin-left: 3em; }
5 .four { display: none; color: red; }
7 Serialized style, using CSS DOM:
8 .one { display: block; }
9 .two { display: inline; }
10 .three { display: list-item; list-style-type: square; margin-left: 3em; }
11 .four { display: none; color: red; }