亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

CSS ?? ??

CSS Outlines


???? ?? ??? ??? ???, ??? ???? ??? ???? ??? ??? ? ????.

??? ??? ?? ???? ???, ?? ? ??? ?????.


CSS ????(outline)

????(outline)? ?? ??? ???? ???, ??? ???? ??? ???? ??? ??? ? ????.

CSS ?? ??? ?? ??? ???, ?? ? ??? ?????.

box_outline.gif

?? CSS ?? ??

"CSS" ?? ??? ?? ??? ???? CSS ??(CSS1 ?? CSS2)? ?????.

PropertyDescriptionValueCSS
outline ?? ?? ??? ??? ??? ????? ?? outline-color
??? ???
??? ??
inherit
2
???-????? ???? ??? ??????? ??
16??
RGB ??
invert
??
2
??? ??? ?? ??? ??? ??none
??
??
????
? ? ? ???
???
??
??
??
??
2
??? ?? ??? ???? ??? ??thin
??
Thick
length
inherit
2

???? CSS ?? ???


Example

?? ??? ?? ????.

     <!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>php中文網(wǎng)(php.cn)</title>
    <style>
        p
        {
            border:1px solid red;
            outline:green dotted thick;
        }
    </style>
</head>

<body>
<p><b>注意:</b> 如果只有一個(gè)!DOCTYPE指定IE8支持 outline屬性。</p>
</body>
</html>

?? ???? ??? ???


Instance

??? ?? ??

   <!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>php中文網(wǎng)(php.cn)</title>
    <style>
        p.one
        {
            border:1px solid red;
            outline-style:solid;
            outline-width:thin;
        }
        p.two
        {
            border:1px solid red;
            outline-style:dotted;
            outline-width:5px;
            outline-color: #99fc58;
        }
    </style>
</head>
<body>

<p class="one">This is some text in a paragraph.</p>
<p class="two">This is some text in a paragraph.</p>

</body>
</html>

????? ???? ??? ???



???? ??
||
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文網(wǎng)(php.cn)</title> <style> p.one { border:1px solid red; outline-style:solid; outline-width:thin; } p.two { border:1px solid red; outline-style:dotted; outline-width:5px; outline-color: #99fc58; } </style> </head> <body> <p class="one">This is some text in a paragraph.</p> <p class="two">This is some text in a paragraph.</p> </body> </html>