cnd
cnd

Reputation: 33724

IE 6 7 style="overflow:auto;

So, I've got a problem using style="overflow:auto; on IE6 / 7 browsers. It just doesn't work there.

I've tried some jquery, but it was fail plaguins ... I can't get them work properly.

So what will you recommend to me to make overflow working for IE6,7 ?

thank you.

Upvotes: 0

Views: 609

Answers (2)

Adam Lukaszczyk
Adam Lukaszczyk

Reputation: 4926

you need to set the dimensions of the div

<div style='overflow:auto; width:200px; height:100px'>das</div>

Upvotes: 3

T1000
T1000

Reputation: 2941

Set the doctype
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/DTD/strict.dtd">

Or not IE6 must die soon, not later :)

Upvotes: 1

Related Questions