> A couple of quetions regarding the following simple code provided below:
>
[quoted text clipped - 50 lines]
> </body>
> </html>
There is no actual HTML element called RadioButtonList so your CSS selector
that references it won't be doing anything
The RadioButtonList is actually implemented as a table. It therefore has
CellSpacing and CellPadding which is why it isn't aligning as you expect.
You can apply CellSpacing="0" to the RadioButtonList control and that
attribute will appear on the generated table element. You can control
CellPadding as an attribute or in CSS as td {padding:0}.
The reason they are so far apart is the the text next to the radio button is
contained in a label element. You CSS gives a label element a minimum size
of 170px.
What is it your trying to achieve?

Signature
Anthony Jones - MVP ASP/ASP.NET
Dave - 24 Mar 2008 16:16 GMT
Thanks for the quick response. Yes, this answers my questions. Thanks
again.
> > A couple of quetions regarding the following simple code provided below:
> >
[quoted text clipped - 68 lines]
>
> What is it your trying to achieve?