Jump to content

css percentage value doesn't work


contra10

Recommended Posts

I was chaning all my pixel values into percentage values to get myself a liquid layout but it seems as if my header won't change based on th percentage. when I input a pixel amount it the header shows up but when i put in a percentage amount nothing shows

 

#header {
height:100%;
line-height:46%;
background: #FE7B09 url(includes/bg.jpg) repeat-x;
}

and this is the one that works

 


#header {

height: 100px;
line-height: 60px;
background: #FE7B09 url(includes/bg.jpg) repeat-x;


}

Link to comment
https://forums.phpfreaks.com/topic/169995-css-percentage-value-doesnt-work/
Share on other sites

Why would you want a percentage height? Different resolutions usually just affect the width of the webpage. The scroll bar shouldn't be a problem. Keep the height fixed. And then use a background image to tile horizontally as far as you need to.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.