31 lines
536 B
HTML
31 lines
536 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<title>hover selector</title>
|
|
<style>
|
|
|
|
div:hover {
|
|
background: orange;
|
|
}
|
|
|
|
div:hover::after {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 100%;
|
|
content: 'dropdown';
|
|
width: 100px;
|
|
height: 200px;
|
|
background: lightblue;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div>hover me</div>
|
|
</body>
|
|
|
|
</html> |