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
- JavaScript
- ssh
- 단축키
- GIT
- xargs
- find
- tomcat
- 네트워크
- Source
- Windows 10
- maVen
- Mac
- resource
- context
- Windows
- web.xml
- netsh
- IntelliJ
- port
- grep
- Quartz
- lsof
- plugin
- import
- vscode
- 줄바꿈 문자
- Eclipse
- bash
- profile
- VirtualBox
Archives
- Today
- Total
develog
[css] inherit, initial, unset 본문
- inherit: 부모 element 의 속성을 상속받는다
- initial: 브라우저 기본 값
- unset: inherit 또는 initial 둘 중 하나로 동작한다
- 부모 element 에 해당 속성이 있으면 inherit 로 동작
- 없으면 initial 로 동작
CSS
.wrapper { color: green; }
.wrapper p { color: orange; }
p.one { color: inherit; }
p.two { color: initial; }
p.three { color: unset; }
HTML
<div class="wrapper">
.wrapper - green
<p>.wrapper p - orange</p>
<p class="one">p.one - inherit</p>
<p class="two">p.two - initial</p>
<p class="three">p.three - unset</p>
</div>
결과
https://www.digitalocean.com/community/tutorials/css-inherit-initial-unset
Inherit, Initial and Unset Values for CSS Properties | DigitalOcean
A quick breakdown of the inherit, initial and unset css values. Unset is the new kid on the block.
www.digitalocean.com
Comments