공부 기록_1

유동헌·2021년 2월 17일
post-thumbnail
<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>
        /* 
        * selector {
            property: value;
        } 
        모든 태그 선택
        */
    * {
        color: black;
    }

    li {
        color: tomato;
    }

    #special {
        color: pink;
    }

    .Black {
        width: 100px;
        color: yellow;
        background-color: yellow;
        height: 100px;
    }

    button:hover {
        color:red;
        background-color: teal;
    }
    </style>
</head>
<body>
    <h1 id="special">Hello</h1>
    <ol>
        <li id="special">First</li>
        <li>second</li>
    </ol>

    <button>Button 1</button>
    <button>Button 2</button>

    <div class="Black"></div>
    <div class="Green"></div>
</body>
</html>
profile
지뢰찾기 개발자

0개의 댓글