IT/css

css Outline Width

조원태 2017. 2. 4. 22:57
반응형

Outline Width


outline-width 속성은 개요의 너비를 지정합니다.


너비는 특정 크기 (px, pt, cm, em 등)로 설정하거나 사전 정의 된 세 가지 값 중 하나 인 얇은, 중간 또는 두 가지 중 하나를 사용하여 설정할 수 있습니다.



Example

p {border: 1px solid black;}


p.one {

    outline-style: double;

    outline-color: red;

    outline-width: thick;

}


p.two {

    outline-style: double;

    outline-color: green;

    outline-width: 3px;

}



<!DOCTYPE html>

<html>

<head>

<style>

p {border: 1px solid black;}


p.one {

    outline-style: double;

    outline-color: red;

    outline-width: thick;

}


p.two {

    outline-style: double;

    outline-color: green;

    outline-width: 3px;

}

</style>

</head>

<body>


<h2>The outline-width Property</h2>


<p class="one">This is some text.</p>

<p class="two">This is some text.</p>

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


</body>

</html>



반응형

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

css Text Color  (0) 2017.02.06
css Outline - Shorthand property  (0) 2017.02.06
css Outline Color  (0) 2017.02.04
CSS Outline  (0) 2017.02.04
The CSS Box Model  (0) 2017.02.03