-
Notifications
You must be signed in to change notification settings - Fork 0
/
hover.html
35 lines (34 loc) · 866 Bytes
/
hover.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> Div hover</title>
<style>
body{
background-color: azure;
font-family: Arial, Helvetica, sans-serif;
}
div > p {
display: none;
}
div:hover > p {
display: block;
color:cornflowerblue;
}
div:hover{
color: aqua;
}
</style>
</head>
<body>
<h1>Div hover</h1>
<hr>
<p>Passe o mouse sobre o texto abaixo</p>
<div>
Test Div hover
<p>Aquilo que se faz por amor está sempre além do bem e do mal. <br>Friedrich Nietzsche.</p>
</div>
<a href="pseudoclasses.html" rel="prev">Voltar</a>
</body>
</html>