Salut,
J'essaie de positionner une icone à droite d'un élément inline. Pas de problème, sauf dans IE6, où le fond n'apparait pas lorsqu'il y a plusieurs lignes. Une idée ?
http://64k.be/download/inlinebg/
Firefox/Safari etc :
http://img242.imageshack.us/img242/6331/picture4ne1.png
IE6 :
http://img151.imageshack.us/img151/9412/picture5ol9.png
Modifié par cedb3 (04 May 2007 - 14:33)
J'essaie de positionner une icone à droite d'un élément inline. Pas de problème, sauf dans IE6, où le fond n'apparait pas lorsqu'il y a plusieurs lignes. Une idée ?
http://64k.be/download/inlinebg/
Firefox/Safari etc :
http://img242.imageshack.us/img242/6331/picture4ne1.png
IE6 :
http://img151.imageshack.us/img151/9412/picture5ol9.png
<!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" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>untitled</title>
</head>
<style type="text/css" media="screen">
div#container {
width: 200px;
font: 65% Arial, Helvetica, sans-serif;
line-height: 1.2em;
}
a.icon-pdf {
background: pink url(icon-pdf.png) no-repeat bottom right;
padding-right: 25px;
}
li {margin-bottom: 5px;}
</style>
<body>
<div id="container">
<ul>
<li><a href="doc.pdf" class="icon-pdf">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Morbi et elit eget ante tempus pellentesque.</a></li>
<li><a href="doc.pdf" class="icon-pdf">Lorem ipsum dolor</a></li>
<li><a href="doc.pdf" class="icon-pdf">Lorem ipsum dolor elit. Morbi et elit eget ante tempus pellentesque.</a></li>
<li><a href="doc.pdf" class="icon-pdf">Ipsum dolor sitdipiscing elit. Morbi et elit eget ante tempus pellentesque.</a></li>
<li><a href="doc.pdf" class="icon-pdf">Lorem ipsum</a></li>
</ul>
</div>
</body>
</html>
Modifié par cedb3 (04 May 2007 - 14:33)