Why would max-width not work on this?

后端 未结 3 1072
广开言路
广开言路 2021-02-02 12:31

Using plain old CSS, why won\'t \'max-width\' not work on the following:

button {
  text-align: center;
  max-width: 540px;
  height: auto;
  display: block;
  p         


        
3条回答
  •  深忆病人
    2021-02-02 12:33

    button {
      text-align: center;
      max-width: 540px;
      height: auto;
      display: block;
      padding: 10px 0;
      margin: 0 auto;
      border: none;
    
      width:100%; /* you forgot this */
    }
    

提交回复
热议问题