I'm making a css template with no tables and I got a question.
Is it possible to define the width in both % and Px ?
My problem is that at 800 resolution the right sidebar(#col3) disappears and I'm not sure how to solve this..
This is the css code for the 3 columns
thanks#header {
background-color: #FFFFFF;
height: 50px;
}
#col1 {
border-right: 1px solid #C6D3E7;
border-bottom: 1px solid #C6D3E7;
background-color: #FAFAFF;
float: left;
width: 25%;
}
#col2 {
background-color: #FFFFFF;
float: left;
width: 50%;
margin-left: 10px;
}
#col3 {
border-left: 1px solid #C6D3E7;
border-bottom: 1px solid #C6D3E7;
background-color: #FAFAFF;
width: 25%;
float: right;
}
#footer {
background-color: #D1DCEB;
text-align: center;
clear: both;
height: 20px;
}







Bookmarks