Where has .btn-default gone in Bootstrap 4?

后端 未结 2 1426
无人及你
无人及你 2021-01-17 09:51

According to the Bootstrap 3 to Bootstrap 4 migration docs:

Buttons

  • Renamed .btn-default to .btn-secondary.

But

相关标签:
2条回答
  • 2021-01-17 10:35

    add this css to your stylesheet file problem gone

    .btn-default {
        color: #333;
        background-color: #fff;
        border-color: #ccc;
    }
    .btn-default:focus {
        color: #333;
        background-color: #e6e6e6;
        border-color: #8c8c8c;
    }
    .btn-default:hover {
        color: #333;
        background-color: #e6e6e6;
        border-color: #adadad;
    }
    .btn-default:active {
        color: #333;
        background-color: #e6e6e6;
        border-color: #adadad;
    }
    
    0 讨论(0)
  • 2021-01-17 10:39

    The btn-outline-secondary class in Bootstrap 4 generates the closest to what used to be btn-default in Bootstrap 3.

    That seems to be "typo" there in the docs.

    primary is the blue button/color and secondary is the grey ones.

    And the very light grey is btn-light.

    Here's the reference link for Bootstrap 4 buttons:

    https://getbootstrap.com/docs/4.0/components/buttons/

    0 讨论(0)
提交回复
热议问题