运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
转到 Spaces
<!DOCTYPE html> <html> <head> <style> h2 { outline-style: solid; outline-width: 1px; } div.a { outline-style: solid; outline-width: 1px; } div.b { border: 2px solid red; outline-style: solid; outline-width: 1px; } </style> </head> <body> <h1>The outline-width Property</h1> <h2>A Heading with a 1 pixels thick outline</h2> <div class="a">A div element with a 1 pixels thick outline.</div> <br> <div class="b">Notice that the outline is outside of any border.</div> </body> </html>