Ich möchte die boxen nebeneinander haben. Den Code des Workarounds verstehe ich nicht wirklich:
HTML:
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>squareboxes</title>
<style>
.square-box{
position: relative;
width: 30%;
overflow: hidden;
}
.square-box:before{
content: "";
display: block;
padding-top: 100%;
}
.square-content{
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
color: white;
background: #4679BD;
padding: 0.5em;
}
.square-content2{
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
color: #03C;
background-color: #3F3;
padding: 0.5em;
}
.square-content div {
display: table;
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<div class="square-box">
<div class="square-content">
die erste
</div>
</div>
</div>
<div class="square-box">
<div class="square-content2">
die zweite
</div>
</div>
</div>
</body>
</html>
Zuletzt bearbeitet von einem Moderator: