문서의 선택한 두 판 사이의 차이를 보여줍니다.
다음 판 | 이전 판 | ||
wiki:css:css_note:css_attr_selectors [2021/03/31 15:17] emblim98 만듦 |
wiki:css:css_note:css_attr_selectors [2023/01/13 18:44] (현재) |
||
---|---|---|---|
줄 147: | 줄 147: | ||
{{: | {{: | ||
=====Styling Forms===== | =====Styling Forms===== | ||
- | 속성 선택자(attribute selector)는 클래스(class) 또는 아이디(ID) 없이 양식에 스타일을 설정하는 것에 유요합니다.\\ | + | 속성 선택자(attribute selector)는 클래스(class) 또는 아이디(ID) 없이 양식에 스타일을 설정하는 것에 유용할 수 있습니다.\\ |
====예제==== | ====예제==== | ||
< | < | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | input[type=text] { | ||
+ | width: 150px; | ||
+ | display: block; | ||
+ | margin-bottom: | ||
+ | background-color: | ||
+ | } | ||
+ | input[type=button] { | ||
+ | width: 120px; | ||
+ | margin-left: | ||
+ | display: block; | ||
+ | } | ||
+ | </ | ||
+ | </ | ||
+ | < | ||
+ | < | ||
+ | <form name=" | ||
+ | Firstname: <input type=" | ||
+ | lastname: <input type=" | ||
+ | <input type=" | ||
+ | </ | ||
+ | </ | ||
+ | </ | ||
</ | </ | ||
- | + | ===Result=== | |
- | + | {{: | |
+ | =====All CSS Attribute Selectors===== | ||
+ | | | ||
+ | ^ %%[attribute]%% | ||
+ | | %%[attribute=value]%% | ||
+ | ^ %%[attribute~=value]%% | ||
+ | | %%[attribute|=value]%% | ||
+ | ^ %%[attribute^=value]%% | ||
+ | | %%[attribute$=value]%% | ||
+ | ^ %%[attribute*=value]%% | ||
+ | \\ | ||
+ | \\ | ||