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
- plugin
- Windows
- maVen
- Mac
- 네트워크
- vscode
- Quartz
- netsh
- port
- resource
- 단축키
- lsof
- IntelliJ
- ssh
- import
- xargs
- web.xml
- find
- JavaScript
- Source
- Windows 10
- profile
- context
- grep
- Eclipse
- VirtualBox
- bash
- tomcat
- 줄바꿈 문자
- GIT
Archives
- Today
- Total
develog
[css] div 사이 높이 간격 벌리기 본문
div 가 여러 개 있을 때
<div class="myItem"></div>
<div class="myItem"></div>
<div class="myItem"></div>
div 사이 높이 간격만 벌리기
div.myItem:not(:last-child) {
margin-bottom: 20px;
}
Comments