Bonsoir, j'ai un problème avec mon separateur , il ne veut pas s'afficher, voici mon code css:
Merci de votre aide
Code:
/*Définition des polices*/
@font-face {
font-family: 'oswald_regularregular';
src: url('oswald-regular-webfont.woff2') format('woff2'),
url('oswald-regular-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
/*Eléments principaux de la page*/
body
{
background: url('image/fond.jpg');
}
#bloc_page
{
width: 900px;
margin: auto;
}
h1
{
font-family: oswald_regularregular;
font-weight: normal;
text-transform: uppercase;
}
/*Header*/
header
{
display: flex;
background: : url('image/separateur.png') repeat-none;
justify-content: space-between;
align-items: flex-end;
}
#titre_principal
{
display: flex;
flex-direction: column;
}
#logo
{
display: flex;
flex-direction: row;
align-items: baseline;
}
#logo img
{
width: 189px;
height: 190px;
}
header h1
{
font-family: 'oswald_regularregular';
font-weight: normal;
text-transform: uppercase;
}
/*Navigation*/
nav ul
{
list-style-type: none;
display: flex;
}
nav li
{
margin-right: 15px;
}
nav a
{
font-size: 1.3em;
color: #181818;
padding-bottom: 3px;
text-decoration: none;
}
nav a:hover
{
color:#760001;
border-bottom: 3px solid #760001;
}
Merci de votre aide