Hi, I've finally decided to cut lose the tables and move on to pure CSS layouts. Unfortunately, it's been a real pain. I've read book after book, visited numerous sites and well... now I'm confused and overwhelmed.
"The perfect fluid layout" is exactly what I'm looking for, but I need help with just one thing. I need to add another fluid column into the layout - fluid, fluid and fixed. I can't seem to wrap my head around it.
I would greatly appreciate any advice or suggestions!
I've finally decided to cut lose the tables and move on to pure CSS layouts. Unfortunately, it's been a real pain. I've read book after book, visited numerous sites and well... now I'm confused and overwhelmed.
"The perfect fluid layout" is exactly what I'm looking for, but I need help with just one thing. I need to add another fluid column into the layout - fluid, fluid and fixed. I can't seem to wrap my head around it.
I would greatly appreciate any advice or suggestions!
Thanks!
http://css-tricks.com/examples/FluidFluidFixed/
HTML:
CSS:
#page-wrap {min-width: 600px;
max-width: 1200px;
margin: 0 auto;
padding: 30px;
}
#fixed-container {
width: 250px;
float: right;
}
#fluid-containers {
padding-right: 260px;
}
.fluid-container {
width: 47%;
float: left;
padding-right: 10px;
}
Thanks again!