I have a page that contains a button and a footer. I can't make the button float right. I have the following code:
<div style="float: right;">
<asp:Button ID="btnSubmit" OnClick="btnSubmit_Click" runat="server" Text="Save"
CssClass="button defaultbutton" />
</div>
<div style="clear:both;"></div>
I did some research on the net and found it is a known bug: Fixing IE6/7 problems when using floated elements inside of a button element
But adding the CSS from the link didn't fix the problem.
Any ideas on how to fix this?
Here is the CSS for button:
display: inline;
color: #ffffff;
font-family: arial;
font-size: 12px;
font-weight: bold;
text-decoration: none;
width: auto;
margin-left: 0;
margin-right: 0;
margin-top: 5px;
margin-bottom: 3px;
padding: 6px 24px;
border-radius: 2px;
And here is the CSS for defaultbutton:
background: #f24537;
border: 1px solid #d02718;
text-shadow: 1px 1px 0 #810e05;
<form action=""><input type="submit" name="btnSubmit" value="Save"/></form>I'm using http://www.csharpkey.com/aspnet/controls/button.htm as a reference by the way. – Hawken Feb 20 '12 at 14:38