M
Mr. X.
Hello,
In my code, I use <asp:RadioButton> and use a fixed width.
(to make spaces between two elements of <asp:RadioButton> -
Is there any other way doing that ?)
It work for some browsers, including Safari, and IE.
But for netscape - not meter what size is - there is no space between two
elements.
Here is code, that work for IE, and not for Netscape.
What should I do in order it work on Netscape (gap between two
radio-buttons).
<asp:Table runat="server" CellPadding="0" HorizontalAlign="Center">
<asp:TableRow height = "25">
<asp:TableCell>
<asp:RadioButton Text="choice 1" width = "100px" groupName =
"test_choices" Checked="True" runat = "server" />
<asp:RadioButton id = "support_choice" Text="choice 2" groupName =
"test_choices" runat = "server"/>
</asp:TableCell>
</asp:Table>
The first radio-button, has the fixed width of 100px,
but it isn't make sence on Netscape - Why ?
Besides, I would like to learn about conventions of several browsers
compatibilities.
(espcecially use of px, em, etc ...)
Thanks
In my code, I use <asp:RadioButton> and use a fixed width.
(to make spaces between two elements of <asp:RadioButton> -
Is there any other way doing that ?)
It work for some browsers, including Safari, and IE.
But for netscape - not meter what size is - there is no space between two
elements.
Here is code, that work for IE, and not for Netscape.
What should I do in order it work on Netscape (gap between two
radio-buttons).
<asp:Table runat="server" CellPadding="0" HorizontalAlign="Center">
<asp:TableRow height = "25">
<asp:TableCell>
<asp:RadioButton Text="choice 1" width = "100px" groupName =
"test_choices" Checked="True" runat = "server" />
<asp:RadioButton id = "support_choice" Text="choice 2" groupName =
"test_choices" runat = "server"/>
</asp:TableCell>
</asp:Table>
The first radio-button, has the fixed width of 100px,
but it isn't make sence on Netscape - Why ?
Besides, I would like to learn about conventions of several browsers
compatibilities.
(espcecially use of px, em, etc ...)
Thanks