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>

更新於: 12-6 月-2020

484 瀏覽

開啟您的 職業生涯

透過完成課程獲得認證

立即開始
廣告
© . All rights reserved.