CSS 参考手册
CSS border-top-color 属性
Set the color of the top border
源代码:
点击运行 »
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <style> p { border-style: solid; border-top-color: #ff0000; } </style> </head> <body> <p>This is some text in a paragraph.</p> </body> </html>
运行结果:
点击运行 »