1
Hallo,
habe ein Problem.
Bin gerade dabei alle Werte auf em umzustellen.
Dabei habe ich das Problem, dass der Textabstand im menue und im footer bei opera nicht so angezeigt werden, wie bei Safari oder Firefox, woran liegt das? Habe ich was falsch in meinem Code?
Anbei der code der css datei:
Anbei der Code der index.html:
Ich danke schon einmal für eure Hilfe.
Liebe Grüße
Der Andreas
[Edit Jörg: zur besseren Lesbarkeit den Code in Codeblöcke eingefügt]
habe ein Problem.
Bin gerade dabei alle Werte auf em umzustellen.
Dabei habe ich das Problem, dass der Textabstand im menue und im footer bei opera nicht so angezeigt werden, wie bei Safari oder Firefox, woran liegt das? Habe ich was falsch in meinem Code?
Anbei der code der css datei:
*{
margin: 0 0;
padding: 0 0;
}
#wrapper {
width: 60em;
margin: 2% auto;
}
#header {
height: 120px;
background-color:#000000;
}
#menue {
width: 60em;
height: 2.3em;
background-color:#000000;
border-bottom: 1px solid #FF9900;
border-left: 1px solid #FF9900;
border-top: 1px solid #FF9900;
}
#menue .strich {
border-left: 1px solid #FF9900;
border-top: 1px solid #FF9900;
}
#menue ul {
list-style: none;
text-align:center;
padding: 0.5em 0px;
}
#menue ul li{
display:inline;
}
#menue ul a{
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size: 0.7em;
color:#FFFFFF;
text-decoration: none;
padding: 0px 2.5em;
}
#menue ul a:hover{
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size: 0.7em;
color:#FF9900;
text-decoration: none;
}
#menue ul a.aktuell{
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size: 0.7em;
color:#FF9900;
text-decoration: none;
}
#content {
width: 60em;
clear: left;
min-height: 500px;
background-color:#000000;
border-right: 1px solid #FF9900;
}
#content .fl-right {
float: right;
width: auto;
background-color:#000000;
}
#footer {
clear: right;
width: 60em;
height: 2.3em;
background-color:#000000;
border-bottom: 1px solid #FF9900;
border-right: 1px solid #FF9900;
border-top: 1px solid #FF9900;
}
#footer .strich {
height: 2.3em;
border-left: 1px solid #FF9900;
border-top: 1px solid #FF9900;
}
#footer ul {
list-style: none;
text-align:right;
padding: 0.5em 0px;
}
#footer ul li{
display:inline
}
#footer ul a{
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size: 0.6em;
font-style:italic;
color:#FFFFFF;
text-decoration: none;
padding: 0px 1.25em;
}
#footer ul a:hover{
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size: 0.6em;
font-style:italic;
color:#FF9900;
text-decoration: none;
}
#footer ul a.aktuell{
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size: 0.6em;
font-style:italic;
color:#FF9900;
text-decoration: none;
}
h1 {
color: #CC3300
}
Anbei der Code der index.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>Andreas Krüger</title>
<link rel="stylesheet" type="text/css" href="css/styles.css">
</head>
<body bgcolor="#000000">
<div id="wrapper">
<div id="header">
</div>
<div id="menue">
<ul>
<li><a class="aktuell" href="index.html">home</a></li>
<li class="strich"></li>
<li><a href="vita.html">vita</a></li>
<li class="strich"></li>
<li><a href="konzerte.html">konzerte</a></li>
<li class="strich"></li>
<li><a href="galerie.html">galerie</a></li>
<li class="strich"></li>
<li><a href="paedagoge.html">pädagoge</a></li>
<li class="strich"></li>
<li><a href="kontakt.html">kontakt</a></li>
</ul>
</div>
<div id="content">
<p class="fl-right">
<img src="pics/homepic.jpg" width="308" height="500" alt="Andreas Krüger">
</p>
</div>
<div id="footer">
<ul>
<li><a href="webdesign.html">webdesign</a></li>
<li class="strich"></li>
<li><a href="impressum.html">impressum</a></li>
</ul>
</div>
</div>
</body>
</html>
Ich danke schon einmal für eure Hilfe.
Liebe Grüße
Der Andreas
[Edit Jörg: zur besseren Lesbarkeit den Code in Codeblöcke eingefügt]