Making button go full-width?

后端 未结 10 1263
臣服心动
臣服心动 2020-12-22 17:18

I want a button to take up the full width of the column, but having difficulties...

10条回答
  •  忘掉有多难
    2020-12-22 17:46

    You should add these styles to a CSS sheet

    div .no-padding {
      padding:0;
    }
    
    button .full-width{
      width:100%;
      //display:block; //only if you're having issues
    }
    

    Then change add the classes to your code

    I haven't tested this and I'm not 100% sure what you want, but I think this will get you close.

提交回复
热议问题