hello,
I have the following html/css code . When I have the screen resolution to 1024*768 the height is 400px.But when I change the screen resolution to 1600*1200 the height does not increase.I am using FF 3.5.2. Can anyone tell what the problem is ?
<?xml version="1.0"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="cs" lang="cs">
<head>
<style>
#mit
{
width:1000px;
max-height:1200px;
min-height:400px;
}
</style>
</head>
<body>
<div id="mit" class ="box" style="border-right: #336699 thin solid; border-top: #336699 thin solid;
border-left: #336699 thin solid; border-bottom: #336699 thin solid;
position: relative;" >
</div>
</body>
</html>