用 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 Views

开始您的 职业

完成课程并获得认证

开始
广告