IT/css

css Outline - Shorthand property

조원태 2017. 2. 6. 22:15
반응형

Outline - Shorthand property


코드 단축을 위해 하나의 속성에 모든 개별 개요 속성을 지정할 수도 있습니다.


outline 속성은 다음과 같은 개별 outline 속성의 속기 속성입니다.


- outline-width

- outline-style (required)

- outline-color


Example

p {

    border: 1px solid black;

    outline: 5px dotted red;

}





<!DOCTYPE html>

<html>

<head>

<style>

p {

    border: 1px solid black;

    outline: 5px dotted red;

}

</style>

</head>

<body>


<h2>The outline Property</h2>


<p><b>Note:</b> IE8 supports the outline properties only if a !DOCTYPE is specified.</p>


</body>

</html>





반응형

'IT > css' 카테고리의 다른 글

css Text Alignment  (0) 2017.02.06
css Text Color  (0) 2017.02.06
css Outline Width  (0) 2017.02.04
css Outline Color  (0) 2017.02.04
CSS Outline  (0) 2017.02.04