“Rand unten funktioniert nicht” Code-Antworten

Rand nicht funktioniert

#outer {
    width:500px; 
    height:200px; 
    background:#FFCCCC;
    margin:50px auto 0 auto;
    display:block;
}
#inner {
    background:#FFCC33;
    margin:50px 50px 50px 50px;
    padding:10px;
    display:inline-block;
}
Vast Vicuña

Rand unten funktioniert nicht

// Your problem is that link ("a") is an INLINE element and you cannot set margin to inlines elements. In order to make it work, you have to declare it as BLOCK element, by adding:

 a{
  display: block;
 }
Smoggy Serval

Ähnliche Antworten wie “Rand unten funktioniert nicht”

Fragen ähnlich wie “Rand unten funktioniert nicht”

Weitere verwandte Antworten zu “Rand unten funktioniert nicht” auf CSS

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen