+ 1
In html code ...how to write a word with capital letter ?
advice for begginer
7 odpowiedzi
+ 4
p {
text-transform: capitalize;
}
p {
text-transform: uppercase;
}
using css
+ 3
Turn your caps lock to on and type it there just as you typed it here.
Or do <p style="text-decoration:uppercase">Zero</p>
To display ZERO
0
See "Text-Transform Values" in:
https://css-tricks.com/almanac/properties/t/text-transform/
Happy coding! :)
0
no guys .. im meant how to write the captical letters in the paragraph
like that "ZERO" or "Zero"
0
Rosy
html is case Insensitive, you can use any cases of letters
0
Use The Shift Key
0
p {
text-transform: capitalize;
}
p {
text-transform: uppercase;
}
using css