Fainaru
12-30-2005, 12:45 AM
Okay so I'm having some CSS problems here.
.content
{
font-size: 8pt;
line-height: 10pt;
font-family: verdana, sans-serif;
width: 485px;
height: 100%;
position: absolute;
left: 5px;
top: 410px;
border: 1px solid #000000;
}
I usually do that and the CSS works fine, but for some reason, I have to change height: 100% into height:100%px for the height to stretch with the content. What could be the problem/error in my CSS?
.content
{
font-size: 8pt;
line-height: 10pt;
font-family: verdana, sans-serif;
width: 485px;
height: 100%;
position: absolute;
left: 5px;
top: 410px;
border: 1px solid #000000;
}
I usually do that and the CSS works fine, but for some reason, I have to change height: 100% into height:100%px for the height to stretch with the content. What could be the problem/error in my CSS?