Jade_o.o
[css] selector 선택자4 - 속성 선택자 본문
css를 통해 selector 선택자 중 속성 선택자에 대해 알아보자
[변수명]{}, [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 선택자4 - 속성 선택자</title>
<style>
[disabled]{
background-color: pink;
}
[placeholder]{
background-color: yellow;
}
[type="password"]{
font-size: 50px;
}
[class="square"]{
width:50px;
height: 50px;
background-color: blue;
border:1px solid black;
}
</style>
</head>
<body>
<input type="text" placeholder="text1">
<input type="text" placeholder="text2">
<input type="text" placeholder="text3" disabled>
<input type="password">
<div class="square"></div>
<div class="square"></div>
<div class="square"></div>
<div class="square"></div>
</body>
</html>
'CSS' 카테고리의 다른 글
[css] selector 실습1 - 기본 선택자 (0) | 2024.01.12 |
---|---|
[css] 인라인 방식,내장방식,링크방식,@import 사용하기 실습 - 모든 css 적용 방법 해보기 (0) | 2024.01.12 |
[css] selector 선택자3 - 가상 클래스 선택자 & 가상 요소 선택자 (0) | 2024.01.12 |
[css] selector 선택자2 - 복합 선택자 (0) | 2024.01.12 |
[css] selector 선택자1 - 기본 선택자 (0) | 2024.01.12 |