主页
CSS
CSS 边框
边框简写
试一试:border-bottom 属性
运行 ❯
建立您
自己的
网站
×
改变方向
保存代码
改变主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> p { border-bottom: 6px solid red; background-color: lightgrey; } </style> </head> <body> <h2>The border-bottom Property</h2> <p>This property is a shorthand property for border-bottom-width, border-bottom-style, and border-bottom-color.</p> </body> </html>