min-width command is a very useful CSS command, which allows you to specify minimum widths for elements. This is very handy when specifying a minimum width for pages.
IE however doesn't complie this command, and so an alternative for the min-width command for IE would be
1. first insert a <div> under your <body> tag, (since you cannot assign a minimum width to your <body>)
Ex.
<body>
<div id="yourcontainer">
2. Then create your CSS commands like this
#yourcontainer
{
min-width: 400px;
width:expression(document.body.clientWidth < 400? "400px": "auto" );
}
CSS Minimum width of page
min-width command is a very useful CSS command, which allows you to specify minimum widths for elements....
css minimum width of page
&nsbp;
1 user(s) are reading this topic
0 members, 1 guests, 0 anonymous users