Forum Moderators: not2easy
could you possibly give us a snippet of your HTML?
You could put your checkboxes within a list <li> which would mean they would automatically display each on a new line. I'm not understanding where the display: none; comes into this, possibly it's just a cross in terminology, but some code will help.
If you want to remove the bullets from the list
use
ul {
list-style: none;
} Thx
Suzy
benihana types quicker hehe ;)
I think I was confusing the "display : none" with the "list-style: none", which works perfectly well for my purpose
While I'm there, could someone tell me if it's ok to use <br> for ordinary line breaks in CSS, as this is what I would have done if I had used tables
in CSS
li {
list-style: none;
}
<div id="sondage">
Utilisez vous ...
<form>
<li><input type="radio" name="sondage" value="souvent" class="row">Souvent</li>
<li><input type="radio" name="sondage" value="jamais" class="row">Jamais</li>
<li><input type="radio" name="sondage" value="toujours" class="row">toujours</li>
</form>
</div>
with standard html
I would have written
<form>
<input type="radio" name="sondage" value="souvent" class="row">Souvent<br>
<input type="radio" name="sondage" value="souvent" class="row">Souvent<br>
<input type="radio" name="sondage" value="souvent" class="row">Souvent<br>
</form>