inserir duas divs uma com 400px de largura e 200px de altura cor de fundo preto, com borda pontilhada branca de 1px, e ao lado a outra div com 450px de largura e 200px de altura com cor de fundo branco
PRECISO DO CODIGO CSS PFVR
Soluções para a tarefa
Respondido por
1
<!DOCTYPE html>
<html>
<head>
<style>
#dv1 {
width: 400px;
height: 200px;
background: #000000;
border: 1px dotted #FFFFFF;
}
#dv2 {
width: 450px;
height: 200px;
background: #FFFFFF;
}
</style>
</head>
<body>
<div id="dv1"></div><div id="dv2"></div>
</body>
</html>
<html>
<head>
<style>
#dv1 {
width: 400px;
height: 200px;
background: #000000;
border: 1px dotted #FFFFFF;
}
#dv2 {
width: 450px;
height: 200px;
background: #FFFFFF;
}
</style>
</head>
<body>
<div id="dv1"></div><div id="dv2"></div>
</body>
</html>
Perguntas interessantes
Matemática,
9 meses atrás
Química,
9 meses atrás
Matemática,
9 meses atrás
Matemática,
1 ano atrás
Matemática,
1 ano atrás
Matemática,
1 ano atrás
Matemática,
1 ano atrás