<div class="productview_layout_left">
<img class="productview_icon" src="images/ex.jpg">
</div>
<div class="productview_layout_right">
<div class="productview_name">PURE </div>
</div>
I have a DIV left and right that is written here
.productview_layout_left{
width: 64%;
display: inline-block;
margin-right: 27px;
}
.productview_layout_right{
width: 33%;
display: inline-block;
}
but I want the left and right div to be able to match each other.
what can I do to achieve it?
ways not to use POSITION