运行 ❯
获取您的
自有
网站
×
更改方向
保存代码
更改主题,暗色/亮色
转到 Spaces
<!DOCTYPE html> <html> <head> <style> h1 { border-bottom-style: ridge; border-bottom-color: coral; border-bottom-width: 7px; } div { border-style: solid; border-bottom-style: ridge; border-bottom-color: coral; border-bottom-width: 7px; } </style> </head> <body> <h1>A heading with a ridge bottom border</h1> <div>A div element with a ridge bottom border.</div> </body> </html>