CSS, overwrite height of all select dropdowns?

后端 未结 7 928
夕颜
夕颜 2021-01-05 16:44

how would i reference, so i could overwrite, all of the select boxes so i can overwrite the default height? I\'m familiar when i create elements using a class, but im unsure

7条回答
  •  半阙折子戏
    2021-01-05 17:01

    You can easily do this using css use line-height and font-size.

    select {
        line-height: 1em;
        font-size: 14px;
    }
    

提交回复
热议问题