Olá! No arquivo Style.CSS, é obrigatório colocar ponto e vírgula (;)?
Exemplo: Sem Ponto e Vírgula (;)
body {
background: #CCCCCC
}
h1 {
text-align: center
}
p {
text-align: center
}
em strong {
color: red
}
Com Ponto e Vírgula (;)
body {
background: #CCCCCC;
}
h1 {
text-align: center;
}
p {
text-align: center;
}
em strong {
color: red;
}