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