bonjour,
mon problème est que mon label de bouton radio a une hauteur de 15 px car j'ai changer appartenance du bouton radio par une image, et le texte label et très grand, le label vas a la ligne mais ne prend pas la place qu'il doit donc texte chevauche le texte suivant
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 input[type=radio].css-radio { display:none; } input[type=radio].css-radio + label.css-label-radio { padding-left:17px; height:15px; display:inline-block; line-height:15px; background-repeat:no-repeat; background-position: 0 0; font-size:0.85em; vertical-align:middle; cursor:pointer; } input[type=radio].css-radio:checked + label.css-label-radio { background-position: 0 -15px; } .css-label-radio{ background-image:url(image) }
Code html : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4 <td style="width:10%;"> <input id="25type1" class="css-radio" type="radio" value="25type1" name="2type5"> <label class="css-label-radio" for="25type1">Une*·partie*·le*·l'âme*·est*·détuite ou bruler</label> </td>
Partager