Amit
Amit

Reputation: 22086

At page Load div is not hiding text

At page Load div should hide Text but it is not hiding

<div id="div1" style="width: 1px; height: 1px;">
    Hello.................................<br />
    Hello.................................<br />
    Hello.................................<br />
    .......
</div>

Upvotes: 2

Views: 257

Answers (2)

manji
manji

Reputation: 47978

Add overflow:auto to the div:

<div id="div1" style="width: 1px; height: 1px;overflow:auto;">
    Hello.................................<br />
    Hello.................................<br />
    Hello.................................<br />
    .......
</div>

The overflow declaration tells the browser what to do with content that doesn't fit in a box.
More information here: http://www.quirksmode.org/css/overflow.html

Upvotes: 3

Thomas Shields
Thomas Shields

Reputation: 8943

Try adding overflow:hidden to your style: <div id="div1" style="width:1px; height:1px; overflow:hidden">

Upvotes: 2

Related Questions