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 次浏览

为您的职业生涯注入活力

完成课程以获得认证

开始
广告