Ich bins mal wieder und imemr noch fleissig am CSS basteln/probieren/testen
Hab wohl ein leichtes Problem wo ich aber den Fehler nicht entdecken kann.
Die einzelnen Bilder sollten natürlich nebeneinander erscheinen, tun es aber nicht, woran könnte es liegen?
Uploaded with
regards
Hab wohl ein leichtes Problem wo ich aber den Fehler nicht entdecken kann.
Die einzelnen Bilder sollten natürlich nebeneinander erscheinen, tun es aber nicht, woran könnte es liegen?
Code:
#websites {
position: absolute;
margin-left: 197px;
margin-top: 23px;
background: url(../images/bg_websitehead.jpg) no-repeat;
height: 95px;
width: 469px;
}
#websites p {
margin-top: 40px;
margin-left: 40px;
font-size: 15px;
color: #d9d7ce;
font-family: Helvetica;
font-weight: bold;
padding-bottom: 0px;
}
.portbox {
float: left;
margin-right: 27px;
margin-bottom: 27px;
padding-top: 0px;
}
.portbox img {
margin-top: 0px;
padding-top: 5px;
padding-right: 5px;
padding-left: 5px;
background-color: #000000;
padding-bottom: 5px;
margin-bottom: 0px;
display: block;
}
Code:
<div id="websites">
<p>Webseiten</p>
<div class="portbox">
<a href="#">
<img src="http://www.psd-tutorials.de/modules/Forum/images/portfolio/blub.jpg" alt="blub" />
</a>
</div>
<div class="portbox">
<a href="#">
<img src="http://www.psd-tutorials.de/modules/Forum/images/portfolio/blub2.jpg" alt="blub" />
</a>
</div>
<div class="portbox">
<a href="#">
<img src="http://www.psd-tutorials.de/modules/Forum/images/portfolio/blub3.jpg" alt="blub" />
</a>
</div>
<div class="portbox">
<a href="#">
<img src="http://www.psd-tutorials.de/modules/Forum/images/portfolio/blub.jpg" alt="blub" />
</a>
</div>
</div><!--end websites-->
Uploaded with
regards