Bootstrap 元素样式
Bootstrap 使用虚线边框来装饰 <abbr> 元素的底部并显示完整文本以利于鼠标悬停。
HTML <abbr> 元素能为缩略语或缩写(如 NASA、HTTPS、ICC 等)提供标记。
你可以尝试运行下述代码,了解 Bootstrap 如何为 <abbr> 元素设置样式 −
示例
<!DOCTYPE html> <html> <head> <title>Bootstrap abbr styling</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script> </head> <body> <abbr title = "National Aeronautics and Space Administration">NASA</abbr><br> <abbr title = "International Cricket Council">ICC</abbr> </body> </html>
广告