Problem in footer html + css [closed]

0

The on part does not appear on the footer

<footerid="rodape">
<div id="endereco">
<div>
    <h2>Endereço:</h2>
    <p>Rua Alcides Lima, 150 bl6 apt 201</p>  
    </div>
</div>

<div id="redes">
<h2>Rede Sociais:</h2>
    <div>
    <p>Facebook</p>
    <p>Twitter</p>
    <p>Intagram</p>
    </div>
</div>
<div id="sobree">
<h2>Sobre esse Site:</h2>
<p>Projeto de Web Design da turma 3508DW Professor: TIO DAIVISSON</p>
</div>
</footer>

</body>
</html>

part css:

#rodape{
    background-color: black;    
    height: 450px;
}

#endereco{
    color: white;
    font-size: 25px;
    font-family: impact;
    width: 22%;
    float: left;
}
h2{
    font-size: 45px;
    font-family: impact;
}
#redes{
    color: white;
    font-size: 25px;
    font-family: impact;
    width: 22%;
    display: inline-block;
}
}

#sobree{
    color: blue;
    font-size: 25px;
    font-family: impact;
    width: 22%;
    
asked by anonymous 16.10.2017 / 21:54

1 answer

2

A% w / w in% w / w% is remaining:

#redes{
    color: white;
    font-size: 25px;
    font-family: impact;
    width: 22%;
    display: inline-block;
}
} <------ aqui

It's missing a } in:

#sobree{
    color: blue;
    font-size: 25px;
    font-family: impact;
    width: 22%;

 < --------------- Aqui

It was certainly a typo, there could be more, but just looking at the entire CSS.

Corrected code:

#rodape{
    background-color: black;    
    height: 450px;
}

#endereco{
    color: white;
    font-size: 25px;
    font-family: impact;
    width: 22%;
    float: left;
}
h2{
    font-size: 45px;
    font-family: impact;
}
#redes{
    color: white;
    font-size: 25px;
    font-family: impact;
    width: 22%;
    display: inline-block;
}

#sobree{
    color: blue;
    font-size: 25px;
    font-family: impact;
    width: 22%;
}
    
16.10.2017 / 21:56