Notice
Recent Posts
Recent Comments
«   2024/12   »
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
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:38

230203

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
반응형
Comments