JSFiddle - React, Tailwind, and code Playground
HTML
<div class="box"></div>
<div class="box"></div>
<div class="box nomargin clearfix"></div>
<div class="nextelement">
Why is doesn't it work?
</div>
CSS
.box{
width: 40px;
height: 100px;
background: green;
float: left;
margin-right: 5px;
}
.nomargin{
margin-right: 0px!important;
}
.clearfix:after {
visibility: hidden;
display: block;
content: "";
clear: both;
height: 0;
}
* html .clearfix { zoom: 1; } /* IE6 */
*:first-child+html .clearfix { zoom: 1; } /* IE7 */