Jade_o.o
[css] selector 실습5 - 속성 선택자 본문
[변수명]{}, [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>
'CSS' 카테고리의 다른 글
[css] 선택자 종합 실습 - 건의사항 작성란 (0) | 2024.01.12 |
---|---|
[css] attr 실습1 - inline-block 네모칸 속 색깔 다른 작은 네모 넣기 (0) | 2024.01.12 |
[css] selector 실습4 - 줄무늬 모양 만들기, before,after (0) | 2024.01.12 |
[css] selector 실습3 - 가상 클래스 선택자 & 가상 요소 선택자 (0) | 2024.01.12 |
[css] selector 실습2 - 복합 선택자 (0) | 2024.01.12 |