Bootstrap 4 按鈕 .btn-outline-info 類


要在按鈕上設定一個表示資訊的輪廓,你需使用 Bootstrap 中的 btn-outline-info 類。

包含按鈕元素並設定 btn-outline-info 類 −

<button type="button" class="btn btn-outline-info">
  More Info
</button>

你可以嘗試執行以下程式碼來實現 btn-outline-info 類 −

示例

實際演示

<!DOCTYPE html>
<html lang="en">
  <head>
    <title>Bootstrap Example</title>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css">
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js"></script>
  </head>
<body>
  <h2>Event</h2>
  <p>The following are the details:</p>
  <ul class = "list-group">
    <li class = "list-group-item">Event Timings 1PM TO 4PM</li>
    <li class = "list-group-item">Venue: 21 KH, HG Lane, Alabama</li>
  </ul>
  <p>For more information about the event:</p>
  <button type="button" class="btn btn-outline-info">More Info</button>
</body>
</html>

更新於: 2020 年 6 月 17 日

122 次瀏覽

為您的職業生涯注入活力

完成課程以獲得認證

開始
廣告
© . All rights reserved.