abstract:
<span class=text>
<b>I want this text to appear normal and not bold.</b>
</span>
Thanks in advance for any help.
I am looking for a way to define my html text as <b>, but then counteract it with css, so that it does not appear bold to the user.
I was thinking something like this but so far it has not worked out.
/* CSS */
.text {font-weight: normal;}
/* HTML */
<span class=text>
<b>I want this text to appear normal and not bold.</b>
</span>
Thanks in advance for any help. |