jshjohnson
jshjohnson

Reputation: 157

Overflow-x IE 7

How would I go about making IE6/7 acknowledge overflow properties?

My website works fine in IE 8+ but for some reason IE6/7 ignore the overflow property so a horizontal scrollbar is created and breaks the layout.

Website: http://jshjohnson.com

Upvotes: 4

Views: 3226

Answers (1)

Jitender
Jitender

Reputation: 7971

use this and try to write this code in conditional css for ie

html {overflow-x:hidden}

Upvotes: 5

Related Questions