CSS Display Inline Block

Inline-block elements flow inline but allow width and height.

Preview

Code

<style>
.box{
display:inline-block;
width:100px;
height:60px;
background:#d1fae5;
margin:5px;
}
</style>

<div class="box"></div>
<div class="box"></div>

More CSS Display Examples (8)