I am using an Asp.Net CheckBoxList Control on an ASPX Page.This control is inside a DIV.I am applying Height to the DIV using the CSS.But the Height is not consistent among IE,FireFox and Safari.
How can I have the Height consistent in IE,FireFox and Safari.?
Thanking you in advance
Following is the CSS Style used:
HTML
How can I have the Height consistent in IE,FireFox and Safari.?
Thanking you in advance
Following is the CSS Style used:
Code:
div#clsChkBoxList
{
height:114px;
overflow:auto;
}
HTML
Code:
<div id="clsChkBoxList">
<asp:CheckBoxList ID="CheckBoxList1" runat="server">
</asp:CheckBoxList>
</div>
Comment