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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<LINK rel="stylesheet" type="text/css" href="style.css">
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<table>
<colgroup>
<col style="width: 300px" />
<col style="width: 300px" />
<col style="width: 300px" />
<col style="width: 300px" />
</colgroup>
<tbody>
<tr>
<td><span class="titre">Titre 1 : </span><span class="donnee">donnée 1</span></td>
<td><span class="titre">Titre 2 : </span>
<span class="donnee">
<select id="select1">
<option selected>Première entrée</option>
<!-- <option id="optionLongue">Entrée qui dépasse vraiment la taille de la ligne</option> -->
<option>Deuxième entrée</option>
<option>Troisième entrée</option>
</select>
</span>
</td>
<td><span>Titre 3 : </span><span>donnée 3</span></td>
<td><span>Titre 4 : </span><span>donnée 4</span></td>
</tr>
<tr>
<td><span>Un autre titre1 : </span><span>donnée 1</span></td>
<td><span>Un autre titre2 : </span><span class="donnee">
<select id="select2">
<option>Première entrée</option>
<!-- <option>Entrée qui dépasse vraiment la taille de la ligne</option> -->
<option selected>Deuxième entrée</option>
<option>Troisième entrée</option>
</select>
</span></td>
<td><span>Un autre titre3 : </span><span>donnée 3</span></td>
<td><span>Un autre titre4 : </span><span>donnée 4</span></td>
</tr>
</tbody>
</table>
</body>
</html> |
Partager