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
- profile
- port
- 단축키
- 줄바꿈 문자
- IntelliJ
- web.xml
- lsof
- context
- Eclipse
- bash
- maVen
- 네트워크
- netsh
- Mac
- tomcat
- Source
- Quartz
- GIT
- Windows
- Windows 10
- import
- plugin
- VirtualBox
- grep
- xargs
- vscode
- resource
- ssh
- JavaScript
- find
Archives
- Today
- Total
develog
[css] top, right, bottom, left 본문
div {
/* top, right, bottom, left */
padding: 10px 5px 15px 20px;
/* (top) (right, left) (bottom) */
padding: 10px 5px 15px;
/* (top, bottom) (right, left) */
padding: 10px 5px;
/* (all sides: top, bottom, left, right) */
padding: 10px;
}
Comments