Flitztuete95
Neues Mitglied
Hallo liebe Community,
erstmal: ich bin neu hier, und vll. wurde diese Frage schon ein Paarmal gestellt. Ich habe ein Problem mit der width/min-width eigenschaft.
Website: http://flitztuete95.fl.ohost.de/TestWeb/index.htm
Hier der
Zur Erklärung: eigentlich sollten die Buttons oben immer 23% des Span-Tags einehmen, komischerweise wird das komplett ignoriert (IE 7 und Firefox). Vll. Könnt ihr mir helfen...
erstmal: ich bin neu hier, und vll. wurde diese Frage schon ein Paarmal gestellt. Ich habe ein Problem mit der width/min-width eigenschaft.
Website: http://flitztuete95.fl.ohost.de/TestWeb/index.htm
Hier der
Code:
body {
background-color: #808080;
font-family: arial, verdana;
}
span {
position: absolute;
left: 10%;
width: 80%;
background-color: #8080FF;
padding: 15px;
}
span a:link {
width: 23%;
height: 32px;
min-width: 128px;
min-height: 32px;
max-width: 128px;
max-height: 32px;
background-image: url(img/01.png);
color: #FFFFFF;
text-decoration: none;
padding-top: 7px;
padding-bottom: 7px;
text-align: center;
}
span a:hover {
width: 23%;
height: 32px;
background-image: url(img/02.png);
color: #000000;
text-decoration: none;
padding-top: 7px;
padding-bottom: 7px;
text-align: center;
}
a.normal {
}