CSS
CSS 文本格式
从设计的角度看 text-decoration属性主要是用来删除链接的下划线
源代码:
点击运行 »
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <style> a { text-decoration: none; } </style> </head> <body> <p>链接到: <a href="https://www.mifengjc.com/">mifengjc.com</a></p> </body> </html>
运行结果:
点击运行 »