problem with width:50% when border != none
take a look http://jsfiddle.net/5nYSf/
result should be like this

|
problem with width:50% when border != none take a look http://jsfiddle.net/5nYSf/ result should be like this
|
|||
|
|
|
You can put two elements beside each other that are 50% wide, then you can put another element inside each that has to margin and border: http://jsfiddle.net/5nYSf/47/ |
||||
|
|
|
The trick is, border and margin are not included in height/width calculation. So, if you have element with width 100px, border 2px and left margin 10px, the 114px of horizontal space will be taken up. (Border is counted twice: left and right.) IIRC, padding is not included too, but I'm not sure about that. There're several options to solve this. You can have The last method in action: |
||||
|
|
|
the border expands the box. 50% + border > 50% you have to decrease the width:
|
|||
|
|
|
Don't forget to factor in those margins (to show up light grey areas) and that you can't use height:100% for the same reasons you can't use width:50% (as described by others here) |
|||
|
|
|
Border is in addition to the defined width, so 50% + 50% + 3px border (on both sides) ends up being 100% + 12px, which is 12px bigger than the containing element (100%). Try using 49% or some other measurement that will leave 12px for the border. |
|||
|
|