HTML/CSS/CSS Attributes and Javascript Style Properties/list style
Содержание
list-style: disc outside url("download.gif")
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title></title>
<style type="text/css">
ul {
font-family: sans-serif;
list-style: disc outside url("ulImage.gif");
}
</style>
</head>
<body>
<ul>
<li>jpg</li>
<li>exe</li>
<li>zip</li>
</ul>
</body>
</html>
"list-style" Example
<html>
<head>
</head>
<body>
<ul style="list-style="circle outside none"">
<li>Item 1.</li>
<li>Item 2.</li>
<li>Item 3.</li>
<li>Item 4.</li>
<li>Item 5.</li>
</ul>
</body>
</html>
list-style: inside url("exploded_folder.gif")
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title></title>
<style type="text/css">
li {
list-style-image: url("collapsed_folder.gif");
}
li + li + li + li + li {
list-style: inside url("exploded_folder.gif");
}
</style>
</head>
<body>
<ul>
<li> My Pictures</li>
<li> My Music</li>
<li> My Documents</li>
<li> My Computer</li>
<li> Control Panel</li>
</ul>
</body>
</html>
list-style: square url("arrow.png") outside
<!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 rel="stylesheet" type="text/css">
li {
background: pink;
}
li#arrow {
list-style: square url("arrow.png") outside;
}
</style>
</head>
<body>
<ul>
<li id="arrow">
All three styles can be provided.
</li>
</ul>
</body>
</html>