0
How to make the text both bold and deleted?
4 Answers
+ 5
This should do it
<b><del>your text </del></b>
however it's much better so style everything with css like @Alexander or @Michael did
+ 1
Font weight is much better to handle with css as with deprecated tag <b>, but <del> element is a semantic tag and is recommended, as long as it's semantically adapted to the content ^^
0
deleted?
font-weight:bold;
0
font-weight: bold;
text-decoration: line-through;
Should do. <del> tag makes basically the same.