Thread: Bold vs. Strong
View Single Post
07-16-2009, 11:04 AM
#14
Log1x is offline Log1x
Status: I'm new around here
Join date: Jul 2009
Location:
Expertise:
Software:
 
Posts: 10
iTrader: 0 / 0%
 

Log1x is on a distinguished road

  Old

Originally Posted by rochow View Post
<strong> = it requires bold emphasise
Code:
This is the <strong>best site ever!</strong>
<b> = some text is bold for ****s and giggles (when bold adds no semantic meaning, such as breaking up a URL to make it visually easier to read, or because your branding has a normal word and a bold word)
Code:
my<b>pony</b>site.<b>com</b>
Visually is there a difference? No. Browsers will bold both for backward compatibility. Screen readers however will read differently for <strong>, and continue normally for <b>. A valid strict alternative is <span> with a class... visually it can be bolded, yet semantically has no more meaning than any other words around it.

You can simple read the text... if when speaking you emphasise the word it should have <em> or <strong>, if you don't then it doesn't. Think a TV ad, it yells certain bits at you that is more important than the rest.
That's pretty interesting. I always use <strong> as it's unique and I find it to be more clean looking..

Reply With Quote