What's the difference between and , and ?

前端 未结 22 2197
清酒与你
清酒与你 2020-11-22 08:10

What\'s the difference between and , and in HTML/XHTML? When should you use

22条回答
  •  清歌不尽
    2020-11-22 08:44

    HTML Formatting Elements:

    HTML also defines special elements for defining text with a special meaning. HTML uses elements like and for formatting output, like bold or italic text.

    HTML Bold and Strong Formatting:

    The HTML element defines bold text, without any extra importance.

    This text is bold
    

    The HTML element defines strong text, with added semantic "strong" importance.

    This text is strong
    

    HTML Italic and Emphasized Formatting:

    The HTML element defines italic text, without any extra importance.

    This text is italic
    

    The HTML element defines emphasized text, with added semantic importance.

    This text is emphasized
    

提交回复
热议问题