<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
.Foo {
display: inline-block;
width: 25%;
background-color: lime;
}
.Bar {
display: inline-block;
width: 25%;
background-color: orange;
}
</style>
</head>
<body>
<div class="Foo">
<p>This is Foo.</p>
</div>
<div class="Bar">
<p>This is Bar.</p>
</div>
<br>
<br>
<div class="Foo">
<p>This is Foo.</p>
</div>
<div class="Bar">
<p>This is Bar.</p>
</div> <div class="Foo">
<p>This is Foo.</p>
</div>
<div class="Bar">
<p>This is Bar.</p>
</div>
<br>
<br>
<div class="Foo">
<p>This is Foo.</p>
</div>
<div class="Bar">
<p>This is Bar.</p>
</div>
</body>
</html>