HTML/CSS/CSS Attributes and Javascript Style Properties/list style

Материал из Web эксперт
Версия от 08:16, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

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>