Some weird thing with clear both via css pseudo :after

后端 未结 3 1433
栀梦
栀梦 2021-01-29 13:08

Examine this code:

HTML

Sometext over here

3条回答
  •  伪装坚强ぢ
    2021-01-29 13:16

    Try this, add display: block to input:

    CSS

    .one {
      display: block;
      width: 450px;
      height: 60px;
      padding-top: 25px;
      color: #ffffff;
      font-size: 34px;
      font-weight: 800;
      text-align: left;
    }
    
    .two {
      font-size: 150%;
      width: 200px;
      height: 20px;
      display: block;
      margin:0 auto;
    }
    

    HTML

    Sometext over here

    DEMO HERE

提交回复
热议问题