[CSS] Center children elements

Best way to do is using grid:

    .input__control {
      display: grid;
      place-content: center;
      width: 1em;
      height: 1em;
      border: 0.1em solid var(--color-default, color("default"));
    }

 

 

posted @ 2021-03-05 21:47  Zhentiw  阅读(55)  评论(0)    收藏  举报