ATIVIDADE DE MULTIPLA ESCOLHA
O CSS (Cascading Style Sheets - Folha de Estilos em Cascata) possui elementos exclusivos para aplicar definições de estilo e formatação de uma interface web. Assim como o HTML é utilizado para estruturar uma página web, o CSS trata de sua apresentação ou acabamento. Assim, conforme código HTML, indique o estilo correto que completa a parte CSS e que apresenta o resultado mostrado em anexo
< html >
< head >
< style type="text/css" >
_____________________________
< /style >
< /head >
< body >
< h1 id="e1" >Apresentação de conteúdo.< /h1 >
< /body >
#e1{background: yellow; width:200px; height:80px; color: blue;}
#e1{bgcolor: blue; width:200px; height:80px; color: yellow;}
#e1{background: blue; width:200px; height:80px; color: yellow; text-align: center;}
.e1{background: blue; width:200px; height:80px; color: green; text-align: right;}
.e1{background: yellow; width:200px; height:80px; color: blue; text-align: center;}
Soluções para a tarefa
Respondido por
2
Resposta:
#e1{background: blue; width:200px; height:80px; color: yellow; text-align: center;}
Explicação:
Perguntas interessantes