J'utilise ce CSS pour formater deux colonnes mais j'obtiens toujours un espace de marge entre deux. Je peux l'éliminer en utilisant margin-left: -4px;
ou certains autres. Existe-t-il une manière plus élégante de le faire ou y a-t-il un problème avec le code CSS?
div.col1{
display: inline-block;
min-height: 900px;
height: 100%;
width 300px;
margin: 0px;
background-color: #272727;
overflow: hidden;
border: 1px dotted red;
}
div.col2{
display: inline-block;
min-height: 900px;
height: 100%;
width: 620px;
margin: 0px;
vertical-align: top;
border: 1px dotted red;
overflow: hidden;
}