Notice
«   2024/11   »
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
관리 메뉴

Jade_o.o

[css] selector 실습5 - 속성 선택자 본문

CSS

[css] selector 실습5 - 속성 선택자

by jade 2024. 1. 12. 12:12

[변수명]{}, [class="클래스명"], [type="password"]

 

<!DOCTYPE html>
<html lang="ko">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>selector 실습5 - 속성 선택자</title>
    <style>
        [disabled]{
            background-color: red;
        }

        [placeholder]{
            background-color: orange;
        }

        [value]{
            background-color: blue;
        }


    </style>
</head>
<body>
    <input type="text" placeholder="이름" />
    <input type="password" value="pw" />
    <input type="text" value="000-0000-0000" />
    <input type="text" placeholder="핸드폰" />
    <input type="text" placeholder="주민번호" disabled />
</body>
</html>