Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Strange Issue with Fieldset & CSS in IE9

Status
Not open for further replies.

BOUSMANBE

Programmer
May 1, 2013
8
US
So I have an <asp:panel> control with it's GroupingText property set which will end up rending as a <fieldset> control.

Inside this Panel/Fieldset I have a button and have it's style property set to "float: right".

If I view this in IE8 or Chrome the button shows up fine but when I view it in IE9, the button disappears.

I can view the source and see that the element is still actually there, it's just not displayed.

Anyone else come across this issue or know why it would be happening?

Example:
<asp:panel ID="pnDateRange" runat="server" GroupingText="Date Range" Width="500" DefaultButton="btnFilter">
<asp:Button ID="btnFilter" runat="server" Text="Filter" style="float: right" />​
</asp:panel>
 
Although you are using Visual Studio to create your markup, this is really a CSS question.
You'd be better off posting here: forum215
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top