使用 CSS 設定嵌入邊框
要使用 CSS 設定嵌入邊框,請使用值為嵌入的 border-style 屬性。
示例
<html> <head> </head> <body> <p style = "border-width:4px; border-style:none;"> This is a border with none width. </p> <p style = "border-width:4px; border-style:inset;"> This is inset border. </p> </body> </html>
廣告