将字符串中的第一个字母作为大写,并将字体设为斜体

时间:2014-06-26 05:13:49

标签: html css jsp

如何在字符串中将第一个字母作为大写,并将字符串显示为斜体..

Input:
hyptis suavalovens
I am trying to get the output like this...
*Hyptis suavalovens*

3 个答案:

答案 0 :(得分:2)

您可以使用:第一个字母选择器。

<p id="mytext">hyptis suavalovens</p>
#mytext{
    font-style: italic;
}
#mytext:first-letter {
    text-transform: uppercase;
}

DEMO

答案 1 :(得分:1)

使用CSS:

p:first-letter {
    text-transform: capitalize;
}

p {
    font-style: italic;
}
<p>input:hyptis suavalovens</p>
<p>i am trying to get the output like this...</p>
<p>*hyptis suavalovens*</p>

http://jsfiddle.net/ez3Lv/2/

答案 2 :(得分:1)

使用此

Input:first-letter {
text-transform: uppercase;
font-style: Italic;
}