I am working with a machine-generated HTML file that contains many tt tags. I tried in several ways to style them, but no method has worked for me up to now: for instance,
<html>
<head>
<style type="text/css">
.a {color:red;}
</style>
</head>
<body>
<p><tt class="a">this should be red</tt></p>
</body>
</html>
is not rendered in red (at least in FF 6.0.1/Ubuntu).
Am I doing something wrong, or styling tt tags is not supported?
http://jsfiddle.net/kw6d5/
Works Chrome 13, Firefox 6, IE9 on Win7.