I am in front of a tricky problem. I have a h1-Tag with a company name. Right before an Image which represents the logo of that company and looks similar to the first letter of the organizations name.
<img src="logo.png" alt="O" /><h1>Organization</h1>
The ALT here is not "O" - I just use it to represent that it looks like an "O".
now with
img, h1 {float:left}
I let em float together and here starts the problem. I want that the image replaces the first letter of the h1-Tag, but I still want to keep the full organization name in the h1-tag for a useful SEO.
Replacing the first letter via CSS is no useful way, since I need the img-Tag seperate so I can use it for that new schema.org marking.