Hallo Leute,
habe nun mal angefangen, an nem Seiten Layout zu basteln, und als dann die ersten Ansätze fertig wären, dachte ich mir, probier ich es einfach mal im IE 7 aus, dass es große Probleme gibt, damit habe ich nicht gerechnet.
Doch dann traff mich der Schlag, fast du komplette Darstellung war eine Katastrophe.
Mein Code (CSS wird erst bei fertigem Design sinnvoll in verschiedene CSS Dokumente verteilt):
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de">
<head>
<title>Goalie-Portal</title>
<style type='text/css'>
*{
margin: 0px;
padding: 0px;
}
html{
background-color: beige;
color: #708090;
font-family: arial;
}
#logo{
font-size: 2em;
color: grey;
margin: 3px;
padding: 3px;
text-decoration: none;
}
#logo a, #logo a:visited, #logo a: active, #logo a:hover{
text-decoration: none;
color: grey;
}
.blau{ color: #B0E0E6; }
.gross{ font-size: 1.5em; }
#navi li{ display:inline; }
#navi{
font-size: 1em;
list-style-type: none;
padding-left: 8px;
width: 50%;
background-color: white;
}
#navi li:before{
content: "»";
padding: 2px;
}
#navi a, #navi a:visited, #navi a:active{
text-decoration: none;
color: #708090;
}
#navi a:hover{
color: orange;
}
</style>
</head>
<body>
<a href='./index' title='Home' id='logo'>
<span class='blau gross'>G</span>oalie <span class='blau gross'>P</span>ortal
</a>
<ul id='navi'>
<li><a href='#' title='Home'>Home</a></li>
<li><a href='#' title='Ausrüstung'>Ausrüstung</a></li>
<li><a href='#' title='Tipps'>Tipps</a></li>
<li><a href='#' title='Videos'>Videos</a></li>
</ul>
</body>
</html>
Man könnte Denken, bei einem Link und einer Liste kann nicht viel verkehrt laufen, jedoch haben beide Designfehler.
Im Link wird trotz deklaration die Farbe auf Blau gesetzt, in der Liste wird der .before content nicht umgesetzt und von der allgemeinen schlechten Darstellung im bezug auf Font glättung vom Browser, an der ich wohl nichts ändern kann, möchte ich garnicht reden.
Wiso macht er so schlimme Darstellungsfehler??
Gruß Sebastian