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 |
Tags
- prompt()
- confirm()
- CSS
- foreach()
- grid-column-end
- className
- grid-column-start
- python #qqplot #qq-plot #code
- css#cascading#display#block#inline
- javascipt
- createElement
- scope
- gird-row-end
- grid-template-areas
- localStorage
- valuable
- classList
- mongodb
- react-hook-form
- javascript
- border-style
- variables
- Grid
- collapsing-margins
- var
- box-shadow
- relative
- package.json
- grid-row-start
- React
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 |