📜  布尔玛重置

📅  最后修改于: 2022-05-13 01:56:16.212000             🧑  作者: Mango

布尔玛重置

在本文中,我们将了解 Bulma 重置。 Bulma reset()是一个 mixin,用于创建按钮或任何其他不可点击的元素。 reset() mixin 在 HTML 元素中应用软样式重置。这个 mixin 主要用于 .bulma-reset-mixin { @include reset; }

示例 1:下面的示例说明了普通按钮中的 Bulma 重置 mixin。

HTML


  

    Bulma Reset
    
    
    
    
    
    

  

    
        

            GeekforGeeks

        

Bulma Reset

                                  
  


CSS
@mixin reset() {
    appearance: none;
    background: 0 0;
    border: none;
    font-family: inherit;
    font-size: 1em;
    margin: 0;
    padding: 0;
}
  
.bulma-reset-mixin {
    @include reset;
}


HTML


  

    Bulma Reset
    
    
    
    
    
    

  

    
        

            GeekforGeeks

        

Bulma Reset

                                     
  


CSS
@mixin reset() {
    appearance: none;
    background: 0 0;
    border: none;
    font-family: inherit;
    font-size: 1em;
    margin: 0;
    padding: 0;
}
  
.bulma-reset-mixin {
    @include reset;
}


输出:

布尔玛重置

布尔玛重置

示例 2:下面的示例说明了 Bulma 按钮中的 Bulma 重置 mixin。

HTML



  

    Bulma Reset
    
    
    
    
    
    

  

    
        

            GeekforGeeks

        

Bulma Reset

                                     
  

CSS

@mixin reset() {
    appearance: none;
    background: 0 0;
    border: none;
    font-family: inherit;
    font-size: 1em;
    margin: 0;
    padding: 0;
}
  
.bulma-reset-mixin {
    @include reset;
}

输出:

布尔玛重置

布尔玛重置

参考: https://bulma.io/documentation/utilities/mixins/#reset