首页
CSS
CSS 边框
边框颜色
试用:使用 HSL 值设置边框颜色
运行 ❯
获取您
自己
的网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> p.one { border-style: solid; border-color: hsl(0, 100%, 50%); /* red */ } p.two { border-style: solid; border-color: hsl(240, 100%, 50%); /* blue */ } p.three { border-style: solid; border-color: hsl(0, 0%, 73%); /* grey */ } </style> </head> <body> <h2>The border-color Property</h2> <p>The color of the border can also be specified using HSL values:</p> <p class="one">A solid red border</p> <p class="two">A solid blue border</p> <p class="three">A solid grey border</p> </body> </html>