XHTML style sheets specify content layout. This example species layout for the margins of a list when it's displayed. As you can see, the developer can specify various layouts for different devices without disturbing the main content.StyleSheet.css
li
{list-style-type:disc; margin-bottom: 4px; margin-left: 2px;}
… |