Bonjour,
Je suis nouvelle ici et débutante en HTML et CSS. J'essaie de mettre en forme un formulaire et je bloque pour aligner correctement les champs.
Je me suis inspirée de différents modèles trouvés à droite à gauche....
J'aimerais que les jours soient alignés horizontalement sur deux lignes
jours : lun mar mer jeu
ven sam dim
Merci par avance pour votre aide qui sera grandement appréciée !
Modifié par thelma (08 Sep 2010 - 16:51)
Je suis nouvelle ici et débutante en HTML et CSS. J'essaie de mettre en forme un formulaire et je bloque pour aligner correctement les champs.
Je me suis inspirée de différents modèles trouvés à droite à gauche....
J'aimerais que les jours soient alignés horizontalement sur deux lignes
jours : lun mar mer jeu
ven sam dim
<div id="stylized" class="myform">
<h1>Rechercher un horaire</h1>
<form id="form" action="index.html" method="post"> <label>Lieu de départ </label> <input id="depart" name="depart" type="text" /> <label>Lieu d'arrivée</label> <input id="destinationl" name="destination" type="text" /><label>Horaires</label><span class="texte">Entre</span><select name="entre"> <option value="1">00:00</option> <option value="2">01:00</option> <option value="3">02:00</option> </select>et<select name="et"> <option value="1">00:00</option> <option value="2">01:00</option> <option value="3">02:00</option> </select><label>Jours</label> Lun<input name="lun" type="checkbox" /></span> Mar<input name="mar" type="checkbox" />Mer<input name="mer" type="checkbox" />Jeu<input name="jeu" type="checkbox" /> Ven<input name="ven" type="checkbox" /> Sam<input name="sam" type="checkbox" /> Dim<input name="dim" type="checkbox" /><label>Date<span class="small">JJ/MM/AAAA (Facultatif)</span> </label> <input id="date" name="date" type="text" /> <button>Rechercher</button> </form></div>
/* ----------- My Form ----------- */
.myform{
margin:0 auto;
width:400px;
padding:14px;
}
/* ----------- stylized ----------- */
#stylized{
border:solid 2px #aacfe4;
background:#f6f6f6;
}
#stylized h1 {
font-size:16px;
font-weight:bold;
margin-bottom:8px;
color:#666666;
}
#stylized p{
font-size:11px;
color:#666666;
margin-bottom:20px;
border-bottom:solid 1px #f6f6f6;
padding-bottom:10px;
}
#stylized label{
display:block;
font-weight:bold;
text-align:right;
width:140px;
float:left;
}
#stylized .small{
color:#666666;
display:block;
font-size:11px;
font-weight:normal;
text-align:right;
width:140px;
}
#stylized input{
float:left;
font-size:12px;
padding:4px 2px;
border:solid 1px #aacfe4;
width:200px;
margin:2px 0 20px 10px;
}
#stylized select{
width:80px;
}
#stylized .texte{
float:left;
display:block;
padding:4px 2px;
margin-left:10px;
}
#stylized button{
clear:both;
margin-left:150px;
width:125px;
height:31px;
background:#666666 url(img/button.png) no-repeat;
text-align:center;
line-height:31px;
color:white;
font-size:11px;
font-weight:bold;
}
Merci par avance pour votre aide qui sera grandement appréciée !
Modifié par thelma (08 Sep 2010 - 16:51)