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
- try width resources
- 비메모리 자원
- 참조 계수
- kubernetes
- 쿠버네티스
- node
- 도파민형 인간
- ESG
- 이펙티브 자바
- Container
- Infresh
- 히든 스토리
- 레퍼런스 복사
- 수부타이
- colllection
- 뉴 컨피던스
- 칭기즈칸의 위대한 장군 수부타이
- 과제의 분리
- HTML
- 월칙
- docker
- 공헌감
- apache kafka
- 아웃풋법칙
- 모두가 기다리는 사람
- CSS
- try-with-resources
- sentry
- java
- 부자의그릇
Archives
- Today
- Total
Hi
(css) outline 본문
outline
윤곽선은 요소를 "눈에 띄게"만들기 위해 테두리 외부의 요소 주위에 그려지는 선입니다.
border 특성과 다르게 2줄 겹치지 않고 1줄로 해주는듯
h2 {
border: 1px solid red;
outline: 5px dotted green;
}
div.a {
border: 1px solid red;
outline: 2px dashed blue;
}
Note: The outline is not a part of the element's dimensions, therefore the element's width and height properties do not contain the width of the outline.
'WEB(웹)' 카테고리의 다른 글
jquery 선택자에 css 스타일 주기 (0) | 2018.06.19 |
---|---|
(javascript) string to number (0) | 2018.06.19 |
(jquery) getter setter (0) | 2018.06.18 |
(jquery) 링크 가져오는 법 (0) | 2018.06.18 |
(jquery) 변수 (0) | 2018.06.18 |