CSS
CSS 边框
在CSS中,可以指定不同的侧面不同的边框
源代码:
点击运行 »
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <style> p { border-top-style: dotted; border-right-style: solid; border-bottom-style: dotted; border-left-style: solid; } </style> </head> <body> <p>两个不同的边界样式。</p> </body> </html>
运行结果:
点击运行 »