I know the OP is asking for a CSS-only solution. But in case anyone landing here from the Magic Google ends up requiring a JavaScript solution, here's a one-liner:
capitalize = str => str[0].toUpperCase() + str.substr(1);
e.g.:
capitalize('foo bar baz'); // -> 'Foo bar baz'