First lowercase the text then capitalize it. Is it possible with CSS?

后端 未结 3 1041
醉酒成梦
醉酒成梦 2020-11-27 23:12

First lowercase the text then capitalize it. Is it possible with CSS?

Edit: Example: HELLO WORLD -> Hello World

Edit2: I have a lis

3条回答
  •  情歌与酒
    2020-11-27 23:42

    Yep:

    .className {
        text-transform:capitalize;
    }
    

    Javascript:

    function capitalize(s){
        return s.toLowerCase().replace( /\b./g, function(a){ return a.toUpperCase(); } );
    };
    
    capitalize('this IS THE wOrst string eVeR');
    

    Stolen from here: Capitalize words in string

提交回复
热议问题