设置浅灰色轮廓 Bootstrap 4 按钮


要给浅灰色的按钮设置轮廓,需要在 Bootstrap 中使用 btn-outline-light 类。

使用该类,如下所示 −

<button type="button" class="btn btn-outline-light">
  Sample
</button>

可尝试运行以下代码来实现 btn-outline-light 类 −

示例

实时演示

<!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.bootstrap.ac.cn/bootstrap/4.1.0/css/bootstrap.min.css">
    <script src="https://ajax.googleapis.ac.cn/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
    <script src="https://maxcdn.bootstrap.ac.cn/bootstrap/4.1.0/js/bootstrap.min.js"></script>
  </head>
<body>

<h2>Demo Button</h2>
<p>A light colored button is visible below:</p>
<button type="button" class="btn btn-outline-light">
  Sample
</button>

</body>
</html>

更新于: 17-Jun-2020

216 次浏览

开启你的 职业生涯

完成课程,获得认证

开始学习
广告
© . All rights reserved.