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>
广告