All Questions
2 questions
1
vote
1
answer
42
views
How can a border cause margins to collapse?
Please take a look at the following examples:
.wrapper {
width: 740px;
background: #ccc;
}
.leftSidebar {
float: left;
width: 200px;
}
.mainContent {
padding-right: 200px;
...
0
votes
3
answers
2k
views
Adding Padding and Border without messing up layout
I have a 3 column layout with the following dimensions:
left column:240px;middle column:360px;right column:360px.I am using a 960px wrapper.
I created the layout using float and put in some ...