HTML list-style-type dash

You could use :before and content: bearing in mind that this is not supported in IE 7 or below. If you’re OK with that then this is your best solution. See the Can I Use or QuirksMode CSS compatibility tables for full details. A slightly nastier solution that should work in older browsers is to … Read more

Uses for the ‘"’ entity in HTML

It is impossible, and unnecessary, to know the motivation for using " in element content, but possible motives include: misunderstanding of HTML rules; use of software that generates such code (probably because its author thought it was “safer”); and misunderstanding of the meaning of ": many people seem to think it produces “smart quotes” (they … Read more

Redirect from an HTML page

Try using: Note: Place it in the head section. Additionally for older browsers if you add a quick link in case it doesn’t refresh correctly: <p><a href=”http://example.com/”>Redirect</a></p> Will appear as Redirect This will still allow you to get to where you’re going with an additional click.

Redirect from an HTML page

Try using: Note: Place it in the head section. Additionally for older browsers if you add a quick link in case it doesn’t refresh correctly: <p><a href=”http://example.com/”>Redirect</a></p> Will appear as Redirect This will still allow you to get to where you’re going with an additional click.