How to capitalize first letter with three lines height in html?
Answers
Answered by
1
I dont understand your question however you can select the first letter in CSS using;
This will Select and style the first letter of every <p> element:
p::first-letter {
font-size: 200%;
color: #8A2BE2;
}
Answered by
1
Hi
You can capitalize first letter using following css code, I am assuming you are trying to capitalize heading.
h1 {
text-transform: capitalize;
}
above code will capitalize all of h1 headings.
Similar questions