Hi

(css) outline 본문

WEB(웹)

(css) outline

SharingWorld 2018. 6. 19. 16:51

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