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