How to apply Title Case in input box through css

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

    If you go with javascript, this would solve your problem

    var str = "nIklesh raut";
    str.replace(/\w\S*/g, function(txt){return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase();});
    

    Ref: How to capitalize first letter of each word, like a 2-word city?

提交回复
热议问题