Originally Posted by Turtle91
Just wondering...I haven't tried before...can you define a class with an element that is already reserved??
.b {font-weight:bold}
when <b> is already reserved??
If it were me, I would do a S/R:
Search: <span class="b">(.*?)</span>
Replace: <strong>\1</strong>
with:
strong {font-weight:bold}
That way you keep styling out of the document and in the css, and you don't need to bloat it with extra <spans>.
Please let us know if you find the problem.
Cheers,
|