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 27
| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>[...]</title>
<style type="text/css">
.div_bulle{
border-color : #a0a0a0;
border-width : 1px;
border-style : solid;
background-color : white;
width : 95%;
padding-left : 8px;
margin-left : 17px;
min-height : 41px;
}
.img_bulle {
position : absolute;
float : left;
}
</style>
</head>
<body>
<img class="img_bulle" src="dialog.gif">
<div class="div_bulle">le texte</div>
</body>
</html> |