web-dev-qa-db-fra.com

Empêcher le texte d'être placé sous une case à cocher

Je mets en place un ensemble de cases à cocher et je rencontre le problème séculaire de l'habillage de texte sous une case à cocher si le texte est trop long. 

Mon HTML:

<div class="right">
    <form id="updateProfile">
        <fieldset class="checkboxes">
            <p>4. What is your favorite type of vacation?</p>
            <label><input type="checkbox" name="vacation" value="Ski Trips"> Ski Trips</label>
            <label><input type="checkbox" name="vacation" value="Beach Visits"> Beach Visits</label>
            <label><input type="checkbox" name="vacation" value="Cruises"> Cruises</label>
            <label><input type="checkbox" name="vacation" value="Historical and educational trips"> Historical and educational trips</label>
            <label><input type="checkbox" name="vacation" value="Yachting"> Yachting</label>
            <label><input type="checkbox" name="vacation" value="Road Trip"> Road Trip</label>
            <label><input type="checkbox" name="vacation" value="Spa Weekend"> Spa Weekend</label>
            <label><input type="checkbox" name="vacation" value="Bed and Breakfast"> Bed and Breakfast</label>
            <label><input type="checkbox" name="vacation" value="Stay home and relax"> Stay home and relax</label>
            <label><input type="checkbox" name="vacation" value="Gambling Trips"> Gambling Trips</label>
            <label><input type="checkbox" name="vacation" value="Volunteer"> Volunteer</label>
        </fieldset>
    </form>
</div>

Mon CSS:

div.right{width:580px;}

form#updateProfile fieldset label{
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
    float: left;
    width: 33%;
}

Voir mon violon ici: http://jsfiddle.net/fmpeyton/7WmGr/

Après de nombreuses recherches sur différents sites, je n'arrive pas à trouver une solution raisonnable. Je suis ouvert aux suggestions sur la modification de mes balises/styles, mais j'aimerais garder le code aussi propre et sémantique que possible.

Merci!

18
Fillip Peyton

Cela semble fonctionner:

http://jsfiddle.net/7WmGr/5/

J'ai donné à la label un margin-left de 18px et aux cases à cocher un margin-left de -18px.

HTML:

<div class="right">
    <form id="updateProfile">
        <fieldset class="checkboxes">
            <p>4. What is your favorite type of vacation?</p>
            <label><input type="checkbox" name="vacation" value="Ski Trips"> Ski Trips</label>
            <label><input type="checkbox" name="vacation" value="Beach Visits"> Beach Visits</label>
            <label><input type="checkbox" name="vacation" value="Cruises"> Cruises</label>
            <label><input type="checkbox" name="vacation" value="Historical and educational trips"> Historical and educational trips</label>
            <label><input type="checkbox" name="vacation" value="Yachting"> Yachting</label>
            <label><input type="checkbox" name="vacation" value="Road Trip"> Road Trip</label>
            <label><input type="checkbox" name="vacation" value="Spa Weekend"> Spa Weekend</label>
            <label><input type="checkbox" name="vacation" value="Bed and Breakfast"> Bed and Breakfast</label>
            <label><input type="checkbox" name="vacation" value="Stay home and relax"> Stay home and relax</label>
            <label><input type="checkbox" name="vacation" value="Gambling Trips"> Gambling Trips</label>
            <label><input type="checkbox" name="vacation" value="Volunteer"> Volunteer</label>
        </fieldset>
    </form>
</div>

CSS:

div.right{width:598px;}

form#updateProfile fieldset label{
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
    float: left;
    width: 30%;
    margin-left:18px;
}
form#updateProfile fieldset label input[type='checkbox']{margin-left:-18px;}

Semble fonctionner dans Crome & IE9.

28
Fillip Peyton

Une option serait quelque chose comme ça.

form#updateProfile fieldset label{
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
    float: left;
    width: 30%;
    padding-left: 3%;
    position: relative;
}

input {
    position: absolute;
    left: -5px;
}

Démo ici: http://jsbin.com/opoqon/1/edit

La façon dont j'ai tendance à le faire est différente, ce qui n’empêche pas inputs de labels, mais plutôt de faire quelque chose comme: 

<input id="ski-trips" type="checkbox" name="vacation" value="Ski Trips"><label for="ski-trips">Ski Trips</label>

ce qui permet alors un style plus facile. 

Voici un exemple de cette façon: http://jsbin.com/otezut/1/edit

Mais de toute façon, ça marcherait.

3
gotohales

J'aime ça ...

HTML: 

<input type="checkbox" name="vacation" value="Ski Trips"><label>very long label ...</label>

CSS:

input[type="checkbox"] { 
    position: absolute;
}
input[type="checkbox"] ~ label { 
    padding-left:1.4em;
    display:inline-block;
}
2
Christian Michael

Ceci est une autre option. C'est très simple mais efficace. Vous prenez la partie qui enveloppe. <label><input type="checkbox" name="vacation" value="Historical and educational trips"> Historical and educational <span class="antiWrap">trips</span></label> et vous ajoutez une étendue avec une classe. J'ai appelé la classe antiWrap. Ensuite, vous utilisez css pour ajouter une marge gauche, comme. .antiWrap { margin-left: 18px; } Voici myfiddle basé sur votre code. http://jsfiddle.net/alexhram/7WmGr/3/ Je pense que c'est ce que vous allez faire? Faites le moi savoir.

0
Chakotay

En voici un qui dépend moins de la taille des éléments d’entrée.

div {width: 12em;}

label {
  display: block;
  white-space: nowrap;
  margin: 10px;
}

label input {
  vertical-align: middle;
}

label span {
  display: inline-block;
  white-space: normal;
  vertical-align: top;
  position: relative;
  top: 2px;
}
<div>

<label><input type="radio"><span>I won't wrap</span></label>
<label><input type="checkbox"><span>I won't wrap</span></label>

<label><input type="radio"><span>I am a long label which will wrap</span></label>
<label><input type="checkbox"><span>I am a long label, I will wrap beside the input</span></label>

</div>

0
Pudica