Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- Absolute
- AGI
- ai
- AI agents
- AI engineer
- AI researcher
- ajax
- algorithm
- Algorithms
- aliases
- Array 객체
- ASI
- bayes' theorem
- Bit
- Blur
- BOM
- bootstrap
- canva
- challenges
- ChatGPT
Archives
- Today
- In Total
A Joyful AI Research Journey🌳😊
230203 HTML5 두 개의 클래스를 하나의 요소에 사용하기 본문
💻Bootcamp Self-Study Revision✨/HTML5, CSS, Bootstrap, JSP
230203 HTML5 두 개의 클래스를 하나의 요소에 사용하기
yjyuwisely 2023. 3. 29. 21:38230203
If you want two classes on one element, do it this way:
<div class="social first"></div>
Reference it in css like so:
.social.first {}
참고: http://jsfiddle.net/jyAyX/
예시) HTML
<div class="foo bar">
<div class = "bar">
</div>
</div>
<div class="foo">
</div>
</div>
CSS
.foo{
border-left: 1px solid gray;
}
.foo.bar{
border-top: 1px solid gray;
}
.foo .bar{
border-right: 1px solid gray;
width:25px;
height:25px;
background-color:lightgray;
}
div{
margin:20px;
height:50px;
width:50px;
background-color:beige;
}
결과)
728x90
반응형
'💻Bootcamp Self-Study Revision✨ > HTML5, CSS, Bootstrap, JSP' 카테고리의 다른 글
230127 HTML5, CSS 메뉴 만들 때 참고하기 (0) | 2023.03.29 |
---|---|
230204 CSS vh와 vw (0) | 2023.03.29 |
230203 CSS after::, before:: 사용법 (0) | 2023.03.29 |
230201, 230422 CSS 하위 폴더 또는 같은 폴더 경로 지정하기, ..의 의미 (0) | 2023.03.29 |
Comments