How to remove the vertical white line between the two green divs without floating them?
JSFIDDLE - http://jsfiddle.net/ZdS48/
HTML
<div class="left">TODO write content1</div>
<div class="left">TODO write content2</div>
<div >TODO write content3</div>
<div>TODO write content4</div>
CSS
div {
width: 200px;
height: 200px;
background-color: red;
}
div.left {
margin:0;
padding:0;
display:inline-block;
background-color: green;
}