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