使用灰色轮廓 Bootstrap 4 按钮设置不太重要的内容


要在 Bootstrap 中设置不太重要的内容,请使用 btn-outline-secondary 类。

在大纲中使用按钮,并使用同一类应用绿色 −

<button type="button" class="btn btn-outline-secondary">
  Tools (Secondary Outline)
</button>

在上面,我已经将 btn-outline-secondary 类设置为对任何元素(此处为按钮)设置的任何普通类。

您可以尝试运行以下代码,以了解如何在设置灰色轮廓 Bootstrap 按钮 -

示例

实际操作

<!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>Web Tools</h2>
  <p>The following are the Tools:</p>
  <ul class = "list-group">
    <li class = "list-group-item">JSON Editor</li>
    <li class = "list-group-item">XML Editor</li>
  </ul>
  <p>For more, click below:</p>
  <button type="button" class="btn btn-outline-secondary"> Tools (Secondary Outline)</button>

</body>
</html>

更新于: 16-6-2020

61 次浏览

开启你的 职业生涯

通过完成课程取得认证

开始
广告