[CSS] [연습] 네비게이션, 마우스포인터 올렸을 때 글자색, 배경색 변경

선영·2022년 8월 16일
0

CSS

목록 보기
12/21
post-thumbnail
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        ul {
            list-style: none;
        }
        ul li {
            float: left;
        }
        a {
            display: block;
            padding: 10px 20px;
            background-color: #ccc;
        }
        a:link, a:visited {
            color: black;
            text-decoration: none;
        }
        a:hover {
            background-color: #000;
            color: #fff;
        }
    </style>
</head>
<body>
    <nav>
        <ul>
            <li><a href="#">메뉴1</a></li>
            <li><a href="#">메뉴2</a></li>
            <li><a href="#">메뉴3</a></li>
            <li><a href="#">메뉴4</a></li>
        </ul>
    </nav>
</body>
</html>

0개의 댓글

관련 채용 정보