How to apply Title Case in input box through css

前端 未结 6 690
迷失自我
迷失自我 2020-12-16 01:23

I am using text-transform property to convert inputbox text into Title Case, But I am not getting the exact property or combination to do this.

I also tried

6条回答
  •  长情又很酷
    2020-12-16 02:01

    text-align: center;
    font-family: 'Signika', sans-serif;
    line-height: 60px;
    font-size: 40px;
    position: relative;
    font-weight: bold;
    text-transform: uppercase;
    

    Use something like this.

提交回复
热议问题