|
Web Contractors Web Developer Jobs Join Us / Log in Discussion |
3 Column CSS Layout
Submitted by tinkerbell on Fri, 06/08/2007 - 05:15
What's the best way to do a CSS 3 Column layout?
Mine is screwed in Internet Explorer but OK in firefox.
New forum topics
- [MELB] Web Developer | Web Designer | Graphic Designer | Marketing Manager
- Open Source Online Invoicing Software
- Professional Drupal Consulting, Design & Development Services in Australia
- New Year Speacial-Professional Website for 400$ with doamin+Host
- Ruby on Rails Oceana
- WebDev/Design/Research/Consultant - PHP/MySql, Javascript, Joomla, HTML, Flash, AJAX
- Freelance ASP.NET Developer
- System Monitoring with Nagios
- Learning Ruby? What about the RubyMentor Project?
- Need a team
- JAOO Sydney/Brisbane 2009
- Get Your Business a Website for $399 ONLY !!!
- Concrete5: Another CMS!
- Manage The Cloud with Amazon Web Services
- Crystal Reports developer needed


Something like:
<div id="container">
<div id="col1"></div>
<div id="col2"></div>
<div id="col3"></div>
</div>
Then you do some CSS like:
#container{
}
#col1{
width: 120px;
float: left:
}
#col2{
width: 600px;
float: left:
}
#col3{
width: 120px;
}
Post new comment