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>

更新于:17-6-2020

122 次浏览

开启你的职业生涯

通过完成课程获得认证

开始
广告