Salut,

N'ayant plus d'yeux, je n'arrive pas à résoudre ce problème de mise en forme! J'aimerais placer la liste déroulante en face de son libellé. Le libellé en question étant le seul libellé n'ayant rien à sa droite (juste au cas où).

Voici le code :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title></title>
    <style type="text/css">
    body {background:#000; color:#eee; font:bold 12px Calibri, Arial, Helvetica, sans-serif;}
    h6, #lblddl {margin:0; padding:8px 0 0 20px; display:block; float:left; clear:left; width:310px; height:22px; background:#333; font:bold 12px Calibri, Arial, Helvetica, sans-serif;}
    ul {margin:0; padding:0; list-style-type:none;}
        ul li {display:block; float:left; width:120px; background:#666;}
    select {}
    </style>
</head>
<body>
    <form id="formulaire" action="positionListeDeroulante.htm" method="get">
        <h6>jkl j j jk jklmjklmjl  jklmjklm </h6>
        <ul id="rbl1">
            <li id="lirbl10"><input id="rbl1_0" name="rbl1" type="radio" value="1"/><label for="rbl1_0">Oui</label></li>
            <li id="lirbl11"><input id="rbl1_1" name="rbl1" type="radio" value="0" checked="checked" /><label for="rbl1_1">Non</label></li>
        </ul>
        <h6>jkl hjkl hjk hjkhjkhjk jkhjkhjkhjklhkl hjk hjklhjkl </h6>
        <ul id="rbl2">
            <li id="lirbl20"><input id="rbl2_0" name="rbl2" type="radio" value="1"/><label for="rbl2_0">Oui</label></li>
            <li id="lirbl21"><input id="rbl2_1" name="rbl2" type="radio" value="0" checked="checked" /><label for="rbl2_1">Non</label></li>
        </ul>
        <h6>jkljkl jklj lkjkljklmjklm jkljkljkl jklj kl jkl</h6>
        <ul id="RadioRechercheBien">
            <li id="liRadioRechercheBien0"><input id="RadioRechercheBien_0" name="RadioRechercheBien" type="radio" value="1" /><label for="RadioRechercheBien_0">Oui</label></li>
            <li id="liRadioRechercheBien1"><input id="RadioRechercheBien_1" name="RadioRechercheBien" type="radio" value="0" checked="checked"  /><label for="RadioRechercheBien_1">Non</label></li>
        </ul>
        <label id="lblddl" for="ddl">jkl jlkm jkmljkjklm </label>
        <select name="ddl" id="ddl">
            <option selected="selected" value="1">jkl jklm</option>
            <option value="2">jkl jk lm</option>
            <option value="3">jklj kljklm</option>
        </select>
    </form>
</body>
</html>
Voyez-vous d'où ça vient? Car moi je ne vois plus rien.

Merci d'avance.