# CSS differences between IE and Firefox

**URL:** https://forum.kirupa.com/t/css-differences-between-ie-and-firefox/262812
**Category:** web dev
**Created:** [June 10, 2008, 5:50am UTC](https://forum.kirupa.com/t/css-differences-between-ie-and-firefox/262812 "2008-06-10T05:50:22Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![rschoenbach](https://avatars.discourse-cdn.com/v4/letter/r/7cd45c/32.png) [@rschoenbach](https://forum.kirupa.com/u/rschoenbach)
#### Post date: [June 10, 2008, 5:50am UTC](https://forum.kirupa.com/t/css-differences-between-ie-and-firefox/262812/1 "2008-06-10T05:50:22Z")

</div>

Can somebody please help me figure out why my page looks different in firefox and in ie?

link is [dev.ryanschoenbach.com](http://dev.ryanschoenbach.com)

Thanks.

---

<div class="post-metadata">

### Author: ![Syous](https://avatars.discourse-cdn.com/v4/letter/s/57b2e6/32.png) [@Syous](https://forum.kirupa.com/u/Syous)
#### Post date: [June 10, 2008, 7:18am UTC](https://forum.kirupa.com/t/css-differences-between-ie-and-firefox/262812/2 "2008-06-10T07:18:02Z")

</div>

IE just sucks, and until IE8 comes out you’re going to have to keep tweaking it to fix it. I’m not sure exactly what IE is reading different than firefox because I’m using a Mac but I know that you can put \*+html infront of a class or id name and those properties will only render for IE.

for example,

```auto
*+html .classname { 
someparam; 
}

```

would only be read in IE.

---

<div class="post-metadata">

### Author: ![rschoenbach](https://avatars.discourse-cdn.com/v4/letter/r/7cd45c/32.png) [@rschoenbach](https://forum.kirupa.com/u/rschoenbach)
#### Post date: [June 11, 2008, 3:46am UTC](https://forum.kirupa.com/t/css-differences-between-ie-and-firefox/262812/3 "2008-06-11T03:46:50Z")

</div>

Thanks. I will try this out.
