How to apply Title Case in input box through css

前端 未结 6 681
迷失自我
迷失自我 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:02

    CSS will only effect the style of the text in your text, it won't change the underlying value of the text box. This means that when you access the value via JavaScript, or if you POST it to your server, the value will be how it was entered, not converted to uppercase. You will need to do that yourself either with JS, or your your server side language.

提交回复
热议问题