<!DOCTYPE html>
<html lang="ko">
<head>
<meta name="viewport" content="width=device-width">
<meta charset="UTF-8">
<link rel="stylesheet" href="../reset.css">
<title>Mouse Enter & Leave</title>
<style>
#dropdown{
padding: 0.6em 1em;
font-size: 2em;
font-weight: bold;
background-color: #333;
display: none;
}
</style>
<script>
window.addEventListener('load', function () {
const show = document.getElementById('show');
const dropdown = document.getElementById('dropdown');
show.addEventListener('mouseenter', function () {
dropdown.style.display = 'block';
});
show.addEventListener('mouseleave', function () {
dropdown.removeAttribute('style');
});
});
</script>
</head>
<body>
<h1 id="show">Show dropdown!</h1>
<div id="dropdown">DROPDOWN</div>
</body>
</html>
