Hallo,
wie bekomme ich die Box so hin wie auf dem Bild?
Gruß GN911
wie bekomme ich die Box so hin wie auf dem Bild?
Code:
<style type="text/css">
<!--
* { margin: 0; padding: 0; }
.box { overflow: hidden; width: auto; background: #fff url(top.gif) repeat-x top left; height: 1%; padding: 25px 0; margin: 1px 0; }
* html > body .box { float: left; overflow: visible; }
.boxcontent { margin: 25px 12px; }
.boxfootershadow { height: 25px; background: #fff url(bottom.gif) repeat-x bottom left; }
-->
</style>
HTML:
<div class="box">
<div class="boxcontent">
ContentBox 1
</div>
<div class="boxfootershadow"></div>
</div>
<div class="box">
<div class="boxcontent">
ContentBox 2
</div>
<div class="boxfootershadow"></div>
</div>
Gruß GN911