Padding soll sich nur auf den Text beziehen.

ElGreco93

Erfahrenes Mitglied
Hallo,
ich will mit Padding den Text in einem Div-Container positionieren. Jedoch wirkt sich das auch auf das Hintergrundbild aus.
box_imgd6gt.png

(Screenshot ist aus Dreamviewer deswegen ist der Rahmen des Div-Container sichtbar)

HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Unbenanntes Dokument</title>
<style type="text/css">
<!--

#box-titel{
	background-image: url(Bilder/box_03.png);
	background-repeat: no-repeat;
	height: 31px;
	width: 170px;
	padding-top: 7px;
	padding-left: 5px;
}
#box-titel a,#box-titel a:link{

}
#box-content{
	background-image: url(Bilder/box_05.png);
	background-repeat: no-repeat;
	height: 147px;
	width: 170px;
	padding-top: 7px;
	padding-left: 5px;

}



-->
</style>
</head>

<body>
<div id="box-titel"> <a href="#">Kontakt</a></div>
<div id="box-content">Lorem Ipsum</div>

</body>
</html>

Ich will nur, dass der Abstand zwischen den Div-Containern weg ist.
Weiß jemand weiter? Danke im vorraus!

Mfg,
Philip
 
Zurück