I am having a slight problem clearing my floats and making the text on my website appear correctly in both Mozilla and Internet Explorer.
http://www.audiadesign.com/site.htm
I used the following code to attempt to clear floats and fix the problem:
.clearfix:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
.clearfix {display: inline-block;}
/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */
I then added class="clearfix" to my container that is floating as you can see, and the problems are still happening. Any ideas? Thanks
Chris