Hi,
habe folgendes Problem, ich hab nen div Tag, alles darin (texte,etc.) sollen über meine css datei formatiert werden, allerdings klappt das irgendwie nicht :/
Meine *.css:
BODY
{
background-color:#d2cece;
}
#der_beruf
{
font:Verdana, Arial, Helvetica, sans-serif;
border-color:aqua;
}
Meine 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=iso-8859-1" />
<title>Der Beruf</title>
</head>
<body>
<div id="der_beruf">
<table width="750" border="0" cellspacing="10" cellpadding="10" align="center">
<tr>
<td width="500" height="128">
Mein Text...
</td>
<td width="250" align="left">
<img src="./images/der_beruf.jpg">
</td>
</tr>
<tr>
<td height="128" colspan="2" valign="top">
Mein Text...
</td>
</tr>
</table>
</div>
</body>
</html>
gruß und danke