outline-width プロパティは、アウトラインの幅を設定するために使用されます。その値は、border-width プロパティと同様に、長さ、または thin、medium、thick のいずれかの値である必要があります。
<html> <head> </head> <body> <p style = "outline-width:thin; outline-style:solid;"> This text is having thin outline. </p> <br /> <p style = "outline-width:thick; outline-style:dashed;"> This text is having thick outline. </p> <br /> <p style = "outline-width:5px; outline-style:dotted;"> This text is having 5x outline. </p> </body> </html>
以上がCSSのアウトライン幅プロパティの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。