Set minimum for the box width

webdesign

New member
Joined
Jul 5, 2012
Messages
229
Points
0
A very handy CSS command that exists is the min-width command, min-height, whereby you can specify the minimum width for any element. This can be especially useful to determine the minimum width for a page.

#container {
min-width: 600px;
width:expression(document.body.clientWidth < 600? "600px": "auto" );
}
<div id="container">
your content here
</div>
 

Noticed

New member
Joined
Aug 1, 2012
Messages
19
Points
0
Thanks for the tip, i've always just used min-width: __px; never the line under it.
 
Older threads
Replies
1
Views
3,346
Replies
1
Views
2,740
Replies
2
Views
4,545
Replies
4
Views
4,340
Replies
8
Views
8,697
Newer threads
Replies
5
Views
4,617
Replies
6
Views
3,515
Replies
1
Views
3,271
Replies
9
Views
11,298
Latest threads
Recommended threads

Referral contests

Referral link for :

Sponsors

Popular tags

You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an alternative browser.

Top