<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en'>
<head>
<title>list-style</title>
<style type='text/css'>
li {
background: mistyrose;
}
li#arrow {
list-style: square url('arrow.png') outside;
}
li#arrow-inside {
list-style: url('arrow.png') inside;
}
li#marker-inside {
list-style: square inside;
}
li#marker-image {
list-style: square url('arrow.png');
}
li#arrow-only {
list-style: url('arrow.png');
}
li#marker {
list-style: circle;
}
li#position {
list-style: inside;
}
</style>
</head>
<body>
<ul>
<li id='arrow'>
All three styles can be provided.
</li>
<li id='arrow-inside'>
The image and the position.
</li>
<li id='marker-inside'>
The marker and the position.
</li>
<li id='marker-image'>
The marker and the image.
</li>
<li id='arrow-only'>
Just the image.
</li>
<li id='marker'>
Just the marker.
</li>
<li id='position'>
Just the position.
</li>
</ul>
</body>
</html>
|