[RECIPE]: Capitalize in CSS

[RECIPE]: Capitalize in CSS

There are cases when you want your text looks fine as header in browser, but you don't know if text has correct case of the first letter. It can easily fixed with the simple CSS rule:

.txt-capitalized {
    text-transform: capitalize;
}