Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does stylistically offset mean in HTML5?

Tags:

html

I read that the < b > element in HTML 5 is used for "stylistically offset" text. What does this exactly mean?

like image 379
Zoltan King Avatar asked Apr 22 '15 10:04

Zoltan King


1 Answers

"Offset" is meant as in "make stand out from the rest". "Stylistically" is meant as opposed to semantically; i.e. the element in question does not have any particularly different meaning from the rest, but is being highlighted purely for stylistic purposes.

In short: <b> is used to highlight content purely for design reasons. As opposed to other semantic tags like <strong>, which would, for example, make a screen reader put emphasis on the word while reading.

like image 97
deceze Avatar answered Sep 24 '22 18:09

deceze