Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- prompt()
- var
- classList
- createElement
- box-shadow
- CSS
- javascipt
- collapsing-margins
- package.json
- variables
- relative
- css#cascading#display#block#inline
- python #qqplot #qq-plot #code
- grid-template-areas
- Grid
- className
- mongodb
- confirm()
- grid-row-start
- border-style
- react-hook-form
- javascript
- grid-column-end
- scope
- gird-row-end
- React
- valuable
- localStorage
- grid-column-start
- foreach()
Archives
- Today
- Total
data life
CSS - Class vs Id 본문
<span>
padding : 상하좌우 모두 적용
margin : 좌우에만 적용 ▶️ inline 성질!!!
<!DOCTYPE html>
<head>
<style>
body {
margin: 20px;
}
span {
padding: 20px;
margin: 30px; //상하좌우 모두 30px로 마진을 줬으나 결과는 좌우만 적용된 걸 볼 수 있음
background-color: aqua;
}
</style>
</head>
<body>
<span>hello</span>
<span>hello</span>
</body>
</html>
Class
.class name { property: property-value ; }
: 연이어 여러 개를 가질 수 있음
<span class="honey butter jam"></span>
Id
#id name { property: property-value ; }
: class와 달리 한 번에 여러 개를 가질 수 없음
차이점
우선순위
id
> class
> tag
'CSS' 카테고리의 다른 글
CSS - Units (0) | 2022.11.12 |
---|---|
CSS - Add CSS to HTML (0) | 2022.11.11 |
CSS-Border (0) | 2022.10.13 |
CSS-Margin, Padding (0) | 2022.10.13 |
CSS - Basic, Display (0) | 2022.10.13 |