ScottJaxon
ScottJaxon

Reputation: 21

IE8 css style table width and alignment woes

http://techmobile.com/defaultIE8TEST.html#footer

Looks like my table under the hometext div is jacked in IE8 works fine (according to browsershots dot org IE7's body footer is shot too).

ie8 http://browsershots.org/screenshots/6d7e47f9d7a763a5942211235691915c

The table width is not stretching far enough and sets off the other graphics, is my summation of the problem. But what CSS fixes it?

I added the last part #wrapper #hometext. Otherwise, very few nuggets in IE8's CSS

@charset "UTF-8";
/* IE 8 CSS Document */


/* top area */

#top #phone {
    width: 110px;
    font-size: 17px;
    font-weight: bold;
}
#wrapper #headermenu ul.menu li {
    font-weight: bold;
}

#wrapper #hometxt {
  background-color: #FFFFFF;
  border: 0 solid #000</b>

}

Upvotes: 0

Views: 571

Answers (1)

NullPoiиteя
NullPoiиteя

Reputation: 57322

Try adding

style="table-layout: fixed;" to the table tag.

Upvotes: 1

Related Questions