1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title> test </title>
<style type="text/css">
body { behavior : url(csshover.htc) ; }
li{ list-style : none ; }
li.objet{ padding-left : 25px ; background : url(puce.gif) left 0.1em no-repeat ;}
li.ouvrir{ padding-left : 25px ; font-size : 0.8em ; background : url(dev1.gif) left 5px no-repeat ;}
li.ouvrir:hover { font-weight : bold ; background : url(dev2.gif) left 5px no-repeat ;}
li.fermer{ padding-left : 25px; font-size : 0.8em ; background : url(red1.gif) left 5px no-repeat ;}
li.fermer:hover { font-weight : bold ; background : url(red2.gif) left 5px no-repeat ;}
</style>
</head>
<body>
<ul>
<li class="liste ouvrir">Plus de details :</li>
<li class="liste objet">plan d action co,</li>
<li class="liste objet">coaching.</li>
<li class="liste objet">plan d action co,</li>
<li class="liste fermer">moins de details :</li>
</ul>
</body>
</html> |