Link to home
Start Free TrialLog in
Avatar of ottenm
ottenm

asked on

flow layout: label on same line as radiobuttonlist?

It looks like radiobuttonlist creates a line break, any workaround in flow layout? (other than absolute positioning with css)
Avatar of mmarinov
mmarinov

Hi ottenm,

it is very strange - i have never had a problem like this.
can you post your html ?


Cheers!
Avatar of ottenm

ASKER

Sorry I was not clear, using asp controls:

<asp:RadioButtonList id="RadioButtonList1" runat="server"></asp:RadioButtonList>
<asp:Label id="Label3" runat="server">Label</asp:Label>

Which generates a table (the trouble) and a span:

<table id="RadioButtonList1" border="0">
</table>
<span id="Label3">Label</span>

ASKER CERTIFIED SOLUTION
Avatar of mmarinov
mmarinov

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of ottenm

ASKER

Sorry I missed your reply mmarinov, that is a great fix.  There's a little border I can't get rid of with border=0, and the cells seem taller than they need to be, but both are probably just tweakable fixes.

Thanks for your suggestion-

Mike
No problem ottenm,

Avout borders you can check your styles.

regards
Martin