html - To make first letter in a string as capital and make the font as italic -


how make first letter capital in string , display string italic..

input: hyptis suavalovens trying output this... *hyptis suavalovens* 

do css:

p:first-letter {     text-transform: capitalize; }  p {     font-style: italic; } 
<p>input:hyptis suavalovens</p> <p>i trying output this...</p> <p>*hyptis suavalovens*</p> 

http://jsfiddle.net/ez3lv/2/


Comments

Popular posts from this blog

html - jquery - p element wont show after I hid it -

python - BeautifulSoup: How to get the nearest tag -

php - Return Last Insert ID with PDO -