Problème affichage header

Résolu
Bonjour,

j'essaye d'améliorer mon design de mon futur site web.

J'aimerais mettre des coins ronds dans ma barre de header.

Voici le bout du code dans le css

#header {

height: 60px;

text-align: left;

background: #000010

border:2px solid black;

border-radius:20px;

-moz-border-radius: 20px;

-webkit-border-radius: 20px;

}

Pour mes autres boîtes comme

#content {

float: right;

width: 590px;

background: #000010

border:2px solid black;

border-radius:20px;

-moz-border-radius: 20px;

-webkit-border-radius: 20px;

}

Cela fonctionne très bien.

Mais le header apparaît seulement mon titre écrit dans mon code html 5 et rien n'affiche du côter du css3

1 réponse

  1. correction du code
    #header {
    height: 60px;
    background-color: black;
    border: 2 px solid black;
    border-radius:20px;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    }
    0