Quais dos seguintes códigos seria usado para criar uma classe chamada button que tem uma largura de 750px, uma altura de 30px e a cor do texto preta?
A)
.button { height: 30px; w i d t h: 750px; color: black; }
B)
#button { height: 30px; w i d t h: 750px; color: black; }
C)
#button { height: 30px; w i d t h: 750px; text: black; }
D)
.button { height: 30px; w i d t h: 750px; text: black; }
E)
button input { height: 30px; w i d t h: 750px; text: black; }
Respostas
respondido por:
3
Resposta:
A) .button { height: 30px; width: 750px; color: black; }
Explicação:
O " . " Significa classe, enquanto o " # " Significa Id, Altura em Inglês é " Height ", enquanto Largura é " Width ", cor em inglês é color, e preto em inglês é black
Em Português seria :
.button { Altura: 30px; Largura : 750px; cor: Preto; }
A tradução é :
.button { height: 30px; width: 750px; color: black; }
respondido por:
0
Resposta:
A)
.button { height: 30px; w i d t h: 750px; color: black; }
Explicação:
Perguntas similares
3 anos atrás
3 anos atrás
3 anos atrás
5 anos atrás
5 anos atrás
7 anos atrás
7 anos atrás