Hallo, ich habe eine Witze Seite und ich weiß nicht was ich falsch mache immer wenn eine größere Auflösung diese Seite betrachtet also Personen deren Auflösun größer ist dann bleibt zwar alles am selben Platz jedoch passt sich die Schrift nicht mit an. Bei mir ist das Inhalt Div Box voll. Bei einer größeren Auflösung ist da mehr Platz frei. Genauso am Header und Bei der Navigation. Wieso?
CSS Code:
* { padding: 0; margin: 0; }
body {
font-family: Arial, Helvetica, sans-serif;
font-size: 13px;
}
#wrapper {
margin: 0 auto;
width: 1000px;
}
#header {
text-align: center;
font-size: 41px;
color: #4169E1;
width: 97.8%;
float: left;
padding: 10px;
border: 1px solid #D3D3D3;
height: 13.5%;
margin: 10px 0px 0px 0px;
background: #EEE8AA;
}
Das hier ist der Hinweis welche unterseite gerade aufgerufen ist.
#navigation {
float: left;
width: 97.8%;
color: #000000;
font-size: 18px;
padding: 10px;
border: 1px solid #D3D3D3;
margin: 0px 0px 0px 0px;
background-color: #F8F8FF;
}
Das hier ist die Navigation.
#leftcolumn {
color: #000000;
border: 1px solid #D3D3D3;
background:#F6F0E0;
margin: 0px 0px 0px 0px;
padding: 10px;
height: 63%;
width: 15.35%;
float: left;
}
#rightcolumn {
text-align: center;
float: right;
color: #000000;
border: 1px solid #D3D3D3;
background: #E6E6FA;
margin: 0px 0px 0px 0px;
padding: 10px;
height: 63%;
width: 80.22%;
}
#footer {
width: 97.8%;
clear: both;
color: #000000;
border: 1px solid #D3D3D3;
background-color: #F3F2ED;
margin: 0px 0px 10px 0px;
padding: 10px;
text-align: center;
}
a:link {
color: #000000;
text-decoration: none;
font-weight: bold;
}
a:visited {
color: #000000;
text-decoration: none;
font-weight: bold;
}
a:hover {
text-decoration: none;
font-weight: bold;
color: #FFA500;
font-style: italic;
}
a:active {
text-decoration: none;
font-weight: bold;
color: #FFA500;
font-style: italic;
}
Danke im Vorraus
MfG Phillip10
CSS Code:
* { padding: 0; margin: 0; }
body {
font-family: Arial, Helvetica, sans-serif;
font-size: 13px;
}
#wrapper {
margin: 0 auto;
width: 1000px;
}
#header {
text-align: center;
font-size: 41px;
color: #4169E1;
width: 97.8%;
float: left;
padding: 10px;
border: 1px solid #D3D3D3;
height: 13.5%;
margin: 10px 0px 0px 0px;
background: #EEE8AA;
}
Das hier ist der Hinweis welche unterseite gerade aufgerufen ist.
#navigation {
float: left;
width: 97.8%;
color: #000000;
font-size: 18px;
padding: 10px;
border: 1px solid #D3D3D3;
margin: 0px 0px 0px 0px;
background-color: #F8F8FF;
}
Das hier ist die Navigation.
#leftcolumn {
color: #000000;
border: 1px solid #D3D3D3;
background:#F6F0E0;
margin: 0px 0px 0px 0px;
padding: 10px;
height: 63%;
width: 15.35%;
float: left;
}
#rightcolumn {
text-align: center;
float: right;
color: #000000;
border: 1px solid #D3D3D3;
background: #E6E6FA;
margin: 0px 0px 0px 0px;
padding: 10px;
height: 63%;
width: 80.22%;
}
#footer {
width: 97.8%;
clear: both;
color: #000000;
border: 1px solid #D3D3D3;
background-color: #F3F2ED;
margin: 0px 0px 10px 0px;
padding: 10px;
text-align: center;
}
a:link {
color: #000000;
text-decoration: none;
font-weight: bold;
}
a:visited {
color: #000000;
text-decoration: none;
font-weight: bold;
}
a:hover {
text-decoration: none;
font-weight: bold;
color: #FFA500;
font-style: italic;
}
a:active {
text-decoration: none;
font-weight: bold;
color: #FFA500;
font-style: italic;
}
Danke im Vorraus
MfG Phillip10
Kommentar