主页
CSS
CSS 轮廓
轮廓颜色
Tryit: 不同的轮廓颜色
运行 ❯
建立您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> p.ex1 { border: 2px solid black; outline-style: solid; outline-color: red; } p.ex2 { border: 2px solid black; outline-style: dotted; outline-color: blue; } p.ex3 { border: 2px solid black; outline-style: outset; outline-color: grey; } </style> </head> <body> <h2>The outline-color Property</h2> <p>The outline-color property is used to set the color of the outline.</p> <p class="ex1">A solid red outline.</p> <p class="ex2">A dotted blue outline.</p> <p class="ex3">An outset grey outline.</p> </body> </html>