I want to change the size of text in a h4 title. I want all letters to be capital but some to be smaller than others. Basically change the text size withing the h3 tags. Thanks so much for any help..
5 comments
Comments are closed.
I want to change the size of text in a h4 title. I want all letters to be capital but some to be smaller than others. Basically change the text size withing the h3 tags. Thanks so much for any help..
Comments are closed.
Actually, I believe what you are looking for is called Small Caps.
Try this:
For More Info:
https://css-tricks.com/almanac/properties/f/font-variant/
You can change the text size either in CSS or with the style attribute.
In CSS:
If you want to size parts of your title, use strong.
Have you tried something like this:
And the html :
http://jsfiddle.net/n7fye5nc/
Something like this?
To increase the font size, use the CSS
font-size
property.To make all text uppercase, use the CSS
text-transform
property.