-2
Does anyone know the ERROR of this code? the paddim bottom simply doesn’t work... thank you
<html>
<head>
<title>Olá, me chamo Ana</title>
<style>
body{
font-family: Arial;
}
.caixa1 {
padding-top: 80px;
padding-bottom: 40px;
text-align: center;
}
.caixa2 {
background: #7134eb;
height: 300px;
}
.caixa3 {
height: 300px;
}
h1 {
text-align: center;
font-size: 48px;
}
p {
text-align: center
}
img{
height: 150px;
}
</style>
</head>
<body>
<div class="caixa1">
<h1> LIA </h1>
<p> Testando </p>
<img src="catioro.jpg">
<div class="caixa2">Caixa 2</div>
<div class="caixa3">Caixa 3</div>
</body>
</html>
Yes it works! is applying normally, you can check https://prnt.sc/trgaus
– hugocsl
It seems to be working, but note that its
<div class="caixa1">
has no end</div>
– Icaro Martins