Search
 
SCRIPT & CODE EXAMPLE
 

CSS

html first letter uppercase

p {
    text-transform: capitalize;
}
Comment

how to make first letter uppercase in javascript

var name = prompt("What is your name");
firstLetterUpper = name.slice(0,1).toUpperCase();

alert("Hello " + firstLetterUpper + name.slice(1, name.length).toLowerCase());
Comment

PREVIOUS NEXT
Code Example
Css :: html css on class 
Css :: width height samsung note 20 screen 
Css :: tailwind simle navbar" 
Css :: clara tyner 
Css :: how to add a selection in css 
Css :: hide yunohost button on apps 
Css :: how can i make a menu bar appear by clicking an icon? in css? 
Css :: tslib.es6 
Css :: $yellow-300; 
Css :: p{ color: blue; font-size: 14px; } 
Css :: position relative and absolute difference in css 
Css :: diagonal background color css 
Css :: print css media query 
Css :: Looping in golang 
Css :: bootstrap.min.css code download 
Typescript :: remove dots from ul li 
Typescript :: adonis make model 
Typescript :: check if url exists python 
Typescript :: conditional style angular 
Typescript :: multi line comments latex 
Typescript :: deno web server 
Typescript :: cheats for dino game chrome 
Typescript :: how to insert subscript in plots in r 
Typescript :: auxilary route 
Typescript :: nextjs global prisma 
Typescript :: node redis new objects must be created at the root 
Typescript :: adonis model preload with condition 
Typescript :: sql see constraints on table 
Typescript :: headphone disconnects in ubuntu 
Typescript :: typescript type for jsx element 
ADD CONTENT
Topic
Content
Source link
Name
1+6 =