I have 2 html radio buttons (separated by <br />
tags) where the text is wrapping under the radio button instead of aligning with the left indent (due to the size it's containing div). The text wrapping is not the problem, the problem is that it is wrapping incorrectly under the radio button itself, instead of aligning with text in the line above it. I'm supposing someone styled the input tag somewhere in the cascade. I haven't done an exhaustive search of all the styles attached to this page, but shouldnt the text just automatically wrap correctly, like a bullet list?
And if not, how would i go about fixing this? Do i need to insert a <br />
tag where I want the lines to break so they will be properly aligned?
Thanks!
If you want to prevent the text from wrapping, you can apply white-space: nowrap; Notice in HTML code example at the top of this article, there are actually two line breaks, one before the line of text and one after, which allow the text to be on its own line (in the code).
Button Wrapping involves wrapping the 'stem' created by the strands of the thread to provide strength and stability to the 'stem' of the button sewn to the fabric.
First of all, the use of a <br />
is generally not recommended, it's a lot better to try and use the margin
CSS property to create space between elements.
It's also best in this situation to use CSS to do what you want to do. This is because by default those elements won't have this kind of behaviour.
In this case you would want something that looks like this:
<div style="width:300px">
<input type="radio" class="radioLeft" />
<div class="textBlock">
Some text that is too long to fit inline and must be broken
up over multiple lines.Some text that is too long to fit inline
and must be broken up over multiple lines.Some text that is too
long to fit inline and must be broken up over multiple lines.
</div>
<div style="clear:both;"></div> //this is important for repeated inputs
</div>
And then your CSS would look like this:
.radioLeft
{
float: left;
}
.textBlock
{
float: left;
width: 80%; //Adjust this value to fit
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With