<html>
<head>
<title>Abakada CSS Demo: list-style-position Attribute</title>
<link rel="stylesheet" href="/shared/netdemos.css">
</head>
<body>
<!-- #include virtual="~/shared/top.inc" -->
<div class="header"><h2>Abakada CSS Demo: list-style-position Attribute</h2></div>
<hr size=1 width=92%>
<center>
<p id="msg">The left list has its <b>list-style-position</b> sttribute set to <i>inside</i>; <br>
the right list to <i>outside</i>. </p>
<table width="75%">
<tr>
<td><ul style="list-style-position: inside">
<li>this is the first item in the list
<li>and this is the second list item
</ul></td>
<td><ul>
<li>this is the first item in the list
<li>and this is the second list item
</ul></td></tr>
</table>
<p class="note">NOTE: <b>list-style-position</b> defaults to <b>outside</b> if not specified. </p>
</center>
<hr size=1 width=92%>
<!-- #include virtual="~/shared/viewsrc.inc" -->
</body>
</html>