Jump to content

Site different in IE


llamafier

Recommended Posts

IE doesn't understand display: table-cell;What I would do is set a fixed size for each a tag. If your wrapper is 800 wide then make each nav link 200px wide.

Link to comment
Share on other sites

Typically, "a" elements are inline elements and you cannot specify a width for inline elements. More percisely, I suppose, you can specify a width but the browser will ignore it. You may have to set your a elements to block rather than inline:

#nav a {	disply: block;	width: 175px;}

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...