CSS 使用 Bootstrap v4 对齐按钮

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/34450586/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-30 11:39:42  来源:igfitidea点击:

Justify buttons with Bootstrap v4

cssbootstrap-4twitter-bootstrap-4

提问by Bass Jobsen

Bootstrap v4 drops the .btn-group-justifiedclass, see https://github.com/twbs/bootstrap/issues/17631

Bootstrap v4 删除.btn-group-justified该类,请参阅https://github.com/twbs/bootstrap/issues/17631

How to justify the button for:

如何为按钮对齐:

 <div class="btn-group btn-group-justified" role="group" aria-label="Justified button group">
   <a class="btn btn-primary" href="#" role="button">Left</a>
   <a class="btn btn-primary" href="#" role="button">Middle</a>
   <a class="btn btn-primary" href="#" role="button">Right</a>
 </div>

采纳答案by Bass Jobsen

Indeed the nav-justify class is missing. You can add it yourself based on TB3's code for now:

确实缺少导航对齐类。您现在可以根据TB3的代码自行添加:

SCSS code

SCSS代码

// Justified button groups
// ----------------------

.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  .btn,
  .btn-group {
    float: none;
    display: table-cell;
    width: 1%;
    .btn {
      width: 100%;
    }
    .dropdown-menu {
      left: auto;
    }
  }
}

compiled CSS code

编译的 CSS 代码

.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate; }
  .btn-group-justified .btn,
  .btn-group-justified .btn-group {
    float: none;
    display: table-cell;
    width: 1%; }
    .btn-group-justified .btn .btn,
    .btn-group-justified .btn-group .btn {
      width: 100%; }
    .btn-group-justified .btn .dropdown-menu,
    .btn-group-justified .btn-group .dropdown-menu {
      left: auto; }

HTML

HTML

 <div class="btn-group btn-group-justified" role="group" aria-label="Justified button group">
   <a class="btn btn-primary" href="#" role="button">Left</a>
   <a class="btn btn-primary" href="#" role="button">Middle</a>
   <a class="btn btn-primary" href="#" role="button">Right</a>
 </div>

The above HTML code now will look like that shown in the figure beneath:

上面的 HTML 代码现在看起来如下图所示:

enter image description here

在此处输入图片说明

Handling borders

处理边界

  • Due to the specific HTML and CSS used to justify buttons (namely display: table-cell), the borders between them are doubled. In regular button groups, margin-left: -1pxis used to stack the borders instead of removing them. However, margindoesn't work with display: table-cell. As a result, depending on your customizations to Bootstrap, you may wish to remove or re-color the borders.
  • 由于用于对齐按钮(即display: table-cell)的特定 HTML 和 CSS ,它们之间的边框加倍。在常规按钮组中,margin-left: -1px用于堆叠边框而不是删除它们。但是,margin不适用于display: table-cell. 因此,根据您对 Bootstrap 的自定义,您可能希望删除或重新着色边框。

Links acting as buttons

链接作为按钮

  • If the <a>elements are used to act as buttons – triggering in-page functionality, rather than navigating to another document or section within the current page – they should also be given an appropriate role="button".
  • 如果<a>元素用作按钮——触发页面内功能,而不是导航到当前页面中的另一个文档或部分——它们也应该被赋予适当的role="button".

Dropdowns

下拉菜单

Use the following HTML code for dropdown buttons:

对下拉按钮使用以下 HTML 代码:

 <div class="btn-group btn-group-justified" role="group" aria-label="Justified button group with nested dropdown">
   <a class="btn btn-secondary" href="#" role="button">Left</a>
   <a class="btn btn-secondary" href="#" role="button">Middle</a>
    <div class="btn-group">
      <button type="button" class="btn btn-secondary dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
        Action
      </button>
      <div class="dropdown-menu">
        <a class="dropdown-item" href="#">Action</a>
        <a class="dropdown-item" href="#">Another action</a>
        <a class="dropdown-item" href="#">Something else here</a>
        <div class="dropdown-divider"></div>
        <a class="dropdown-item" href="#">Separated link</a>
      </div>
    </div>
 </div>

The justified button group with dropdown button should look like that shown in the figure below:

带有下拉按钮的对齐按钮组应如下图所示:

enter image description here

在此处输入图片说明

With <button>elements

<button>元素

  • To use justified button groups with <button>elements, you must wrap each button in a button group. Most browsers don't properly apply our CSS for justification to <button>elements, but since we support button dropdowns, we can work around that.
  • 要将对齐的按钮组与<button>元素一起使用,您必须将每个按钮包装在一个按钮组中。大多数浏览器都没有正确地将我们的 CSS 应用于<button>元素的对齐,但由于我们支持按钮下拉菜单,我们可以解决这个问题。

HTML

HTML

 <div class="btn-group btn-group-justified" role="group" aria-label="Justified button group">
   <div class="btn-group" role="group">
     <button type="button" class="btn btn-secondary">Left</button>
   </div>
   <div class="btn-group" role="group">
     <button type="button" class="btn btn-secondary">Middle</button>
   </div>
   <div class="btn-group" role="group">
     <button type="button" class="btn btn-secondary">Right</button>
  </div>
 </div>

The above HTML code used to justified button groups with <button>elements should look like that shown in the figure beneath:

上面用于用<button>元素对齐按钮组的 HTML 代码应该如下图所示:

enter image description here

在此处输入图片说明

回答by Chris Baswell

For anyone finding this after Bootstrap 4 Beta was released...

对于在 Bootstrap 4 Beta 发布后发现此问题的任何人...

<div class="btn-group d-flex" role="group">
   <a href="" class="btn btn-secondary w-100">Previous</a>
   <a href="" class="btn btn-secondary w-100">Next</a>
</div>

回答by Philip Stanislaus

Building on Bass Jobsen's great answer, here is the same functionality using flexbox instead of display: table;

基于Bass Jobsen 的出色回答,这里使用 flexbox 而不是相同的功能display: table;

SCSS code

SCSS代码

// Justified button groups
// ----------------------

.btn-group-justified {
  display: flex;
  width: 100%;
  .btn,
  .btn-group {
    flex: 1;
    .btn {
      width: 100%;
    }
    .dropdown-menu {
      left: auto;
    }
  }
}

HTML

HTML

<div class="btn-group btn-group-justified" role="group" aria-label="Justified button group">
   <a class="btn btn-primary" href="#" role="button">Left</a>
   <a class="btn btn-primary" href="#" role="button">Middle</a>
   <a class="btn btn-primary" href="#" role="button">Right</a>
 </div>

Please refer to Bass Jobsen's answerfor more details on usage with dropdowns, HTML Links and more.

请参阅Bass Jobsen 的回答,了解有关使用下拉菜单、HTML 链接等的更多详细信息。

回答by Philip Stanislaus

When using with class="dropdown-menu"with Bootstrap V4.0, based on Chris Baswell' solution above and Bootstrap Documentation: https://getbootstrap.com/docs/4.0/components/button-group/#nesting

class="dropdown-menu"与 Bootstrap V4.0一起使用时,基于上面 Chris Baswell 的解决方案和 Bootstrap 文档:https: //getbootstrap.com/docs/4.0/components/button-group/#nesting

<div class="btn-group d-flex" role="group">
    <button type="button" class="btn btn-secondary">1</button>
    <button type="button" class="btn btn-secondary">2</button>
    <div class="btn-group w-100" role="group">
        <button type="button" class="btn btn-secondary dropdown-toggle-no-carret w-100" title="MANAGE ENTRIES" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
            Drop Down
        </button>
        <div class="dropdown-menu">
            <a href="" class="btn btn-secondary w-100">Previous</a>
            <a href="" class="btn btn-secondary w-100">Next</a>
        </div>
    </div>
</div>