代码之家  ›  专栏  ›  技术社区  ›  Elaine Byene

大纲不会出现在引导程序4的btn组按钮中

  •  0
  • Elaine Byene  · 技术社区  · 6 年前

    btn-group 上课。

    JSFiddle DEMO

    <button class="btn btn-primary">Button without outline</button>
    <hr />
    <div class="btn-group btn-group-toggle d-flex" data-toggle="buttons">
                  <label class="btn btn-primary w-100 active">
                    <input type="radio" name="options" id="option1" autocomplete="off"> Button with outline
                  </label>
                  <label class="btn btn-primary w-100">
                    <input type="radio" name="options" id="option2" autocomplete="off"> Button with outline
                  </label>
                </div>
    

    CSS:

    body {
      margin: 1rem;
    }
    [class*="btn-"]:focus {
      -webkit-box-shadow: none;
              box-shadow: none
    }
    
    1 回复  |  直到 6 年前
        1
  •  1
  •   לבני מלכה    6 年前

    使用 .focus 安装 :focus beacuse bootstrap添加 focus onfocus box-shadow 风格

    [class*="btn-"] .focus {
         box-shadow: none
    }
    

    See fiddle