I'm creating a html newsletter to be sent by mail, and this is how far I came:
CSS
.kasten {
color: #000;
display: inline-block;
border-size: 1px;
border-style: solid;
border-radius: 10px;
border-color: #493c2a;
margin: 7px;
padding: 0px;
box-shadow: 0px 0px 10px #222;
width: 300px;
height: 300px;
text-decoration: none;
}
HTML
<div class="kurse">
<a class="kasten" href="#">
<!-- content -->
</a>
<a class="kasten" href="#">
<!-- content -->
</a>
<a class="kasten" href="#">
<!-- content -->
</a>
</div>
The problem is, the blocks don't get displayed in a single line, but rather with some kind of "bumps".
Does anyone know how to fix this?