Quote:
Originally Posted by pein87
there in a table? Why not assign a width for each table data with the first one being set to 100% and the other having a fixed width. Another solution is to make one on table data and an inner div to hold your radio buttons and use margin:left to space it to the other end. Of do an all div mark up which would enable various other styling abilities over a table.
You could use another table just for that one part like so
HTML Code:
<table>
<tr>
<td class="questions"> hhgfhfhfghfhfghfhf</td><td class="answers"><form><input type ="radio" /><label>Whats UP?</label><br /><input type ="radio" /><label>Whats UP?</label><br /><input type ="radio" /><label>Whats UP?</label><br /></form></td>
</tr>
</table>
CSS:
HTML Code:
table {
width:100%;
height:auto;
}
td {
padding:10px 10px 10px 10px;
height:auto;
}
td.questions {
width:50%;
height:auto;
}
td.answers {
width:50%;
text-align:right;
}
Hope that helps you some.
|
No, there's no tables. I know how to do what you posted, but I'm trying to avoid tables and stick with vBulletin's new css layout