Olá pessoal.
Estou estudando web com o livro de HTML5 e CSS3 da casa do Código e não estou conseguindo aplicar alguns efeitos do CSS no HTML. As classes “tip” e “help” do html não estão sendo alteradas pelos comandos do CSS, o restante está funcionando.
HTML:
<title>botao</title>
</head>
<body>
<div class="button">BOTÃO</div>
<br>
<div class="boxWithPadding">elemento com paddind</div>
<br>
<div class='boxWithoutPadding'>elemento sem padding</div>
<br>
<section>
<h1>Pseudo elementos</h1>
</section>
<br>
<section>
<div class='help'>
Preencha o campo com um e-mail válido, assim poderemos entrar em contato com você para informar o resultado do nosso concurso.
</div>
</section>
<p class="tip"
Você sabia que...
</<p>
<br>
<blockquote>
O problema com citações na Internet é que você não pode
confirmar a sua veracidade.
</blockquote>
</body>
</html>
CSS:
. button{
border: 1px solid #123;
height: 26px;
padding: 10px 10px 10px 10px;
width: 90px;
background-color: #17c;
text-align: center;
vertical-align: middle;
}
.boxWithPadding{
border: 2px solid #8AF;
background-color: limegreen;
padding: 10px 25px;
width: 250px;
box-sizing: border-box;
}
.boxWithoutPadding {
background-color: darkred;
width: 250px;
}
section {
border: 4px solid #FFAACC;
width: 400px;
height: 100px;
margin: 40px;
}
h1 {
text-align: center;
background-color: #692469;
font-size: 1.5em;
}
h1 {
font-size: 1.2em;
left: -10px;
padding: 15px 0;
position: relative;
text-align: center;
width: 420px;
}
h1::before{
border-color: transparent #692469 #eb0a33 #000;
border-style: solid;
border-width: 5px;
content: "";
left: 0;
position: absolute;
top: -10px;
}
h1::after{
border: 5px solid #532899;
content: "";
position: absolute;
top: -20px;
right: 0;
}
h1::after{
border-color: transparent #692469 #eb0a33 #000;
border-style: solid;
border-width: 5px;
content: "";
right: 0;
position: absolute;
top: -10px;
.help{
border: 3px solid #17A;
background-color: #00F;
}
.help::before {
border-color: transparent #000 transparent transparent;
border-style: solid;
border-width: 14px;
content: "";
left: -28px;
margin-top: -14px;
position: absolute;
top: -20px;
}
.tip{
content: "\261E";
margin-right: 10px;
}
blockquote {
color: #444;
font-style: italic;
}