Der erste DIV ist mit diplay-inlineblock
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Unbenanntes Dokument</title>
<style type="text/css">
.wrapper {
box-sizing: border-box;
height: 800px;
max-width: 800px;
margin-right: auto;
margin-left: auto;
background-color: #CF9;
}
.eins {
box-sizing: border-box;
height: 200px;
max-width: 33.3333%;
min-width: 180px;
background-color: #EEE;
float: left;
font-family: Arial, Helvetica, sans-serif;
font-size: 0.8em;
border-left-style: solid;
border-left-width: 2em;
border-left-color: #E00;
padding: 0.5em;
line-height: 1.4em;
}
.zwei {
box-sizing: border-box;
height: 200px;
max-width: 33.3333%;
min-width: 180px;
background-color: #DDD;
float: left;
font-family: Arial, Helvetica, sans-serif;
font-size: 0.8em;
border-left-style: solid;
border-left-width: 2em;
border-left-color: #0E0;
padding: 0.5em;
line-height: 1.4em;
}
.drei {
box-sizing: border-box;
height: 200px;
max-width: 33.3333%;
min-width: 180px;
background-color: #EEE;
float: left;
font-family: Arial, Helvetica, sans-serif;
font-size: 0.8em;
border-left-style: solid;
border-left-width: 2em;
border-left-color: #00E;
padding: 0.5em;
line-height: 1.4em;
}
h2 {
font-family: "Arial Black", Gadget, sans-serif;
font-size: 1.4em;
font-style: normal;
float: none;
line-height: 1.4px;
display: inline-block;
}
em {
font-family: "Arial Black", Gadget, sans-serif;
font-size: 1.4em;
font-style: normal;
}
</style>
</head>
<body>
<div class="wrapper">
<div class="eins"><h2>Raum</h2> für den Inhalt von Klasse statt Masse und noch mehr. Blindtext ist kein text für Blinde. class "eins"</div>
<div class="zwei"><em>Zeit</em> für den Inhalt von Klasse statt Masse und noch mehr. Blindtext ist kein text für Blinde. class "zwei"</div>
<div class="drei"><em>Geld</em> für den Inhalt von Klasse statt Masse und noch mehr. Blindtext ist kein text für Blinde. class "drei"</div>
</div>
</body>
</html>