How to Capitalize first letter only using CSS in each case

后端 未结 5 1837
礼貌的吻别
礼貌的吻别 2021-02-13 04:10

I want to Capitalize first letter only and other should be small using CSS

String is:

SOMETHING BETTER 
sOMETHING bETTER
Something bett         


        
5条回答
  •  星月不相逢
    2021-02-13 04:44

    Yes, CSS is no help here. Welcome to the world of JavaScript, where anything is possible.

    window.onload = function(){
      var elements = document.getElementsByClassName("each-word")
      for (var i=0; i$1$2")
      }
    }
    
    
    
      .first-letter {
        color: red;
      }
    
    
    
    

    First letter of every word is now red!

提交回复
热议问题