使用 CSS 將輪廓樣式設定為兩條實線
要將輪廓樣式設定為兩條實線,請將 outline-style 屬性與值 double 結合使用
示例
<html> <head> </head> <body> <p style = "outline-width:7px;outline-style:double;"> This text is having 7px double outline. </p> </body> </html>
廣告
要將輪廓樣式設定為兩條實線,請將 outline-style 屬性與值 double 結合使用
<html> <head> </head> <body> <p style = "outline-width:7px;outline-style:double;"> This text is having 7px double outline. </p> </body> </html>