Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3939410
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T00:17:48+00:00 2026-05-20T00:17:48+00:00

Is there any real difference between using <strong> and <em> instead of the CSS

  • 0

Is there any real difference between using <strong> and <em> instead of the CSS properties:

font-weight: bold;
font-style: italic;

Also, what is really the reason that both options exist? I could be wrong but didn’t <strong> and <em> came on the scene quite a while after font-weight and font-style became standard CSS properties? If so, there must be some reason for them.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T00:17:49+00:00Added an answer on May 20, 2026 at 12:17 am

    HTML represents meaning; CSS represents appearance. How you mark up text in a document is not determined by how that text appears on screen, but simply what it means. As another example, some other HTML elements, like headings, are styled font-weight: bold by default, but they are marked up using <h1>–<h6>, not <strong> or <b>.

    In HTML5, you use <strong> to indicate important parts of a sentence, for example:

    <p><strong>Do not touch.</strong> Contains <strong>hazardous</strong> materials.
    

    And you use <em> to indicate linguistic stress, for example:

    <p>A Gentleman: I suppose he does. But there's no point in asking.
    <p>A Lady: Why not?
    <p>A Gentleman: Because he doesn't row.
    <p>A Lady: He doesn't <em>row</em>?
    <p>A Gentleman: No. He <em>doesn't</em> row.
    <p>A Lady: Ah. I see what you mean.
    

    These elements are semantic elements that just happen to have bold and italic representations by default, but you can style them however you like. For example, in the <em> sample above (dialogue from the opening scene of BioShock Infinite), you could represent stress emphasis in uppercase instead of italics, but the functional purpose of the <em> element remains the same — to change the context of a sentence by emphasizing specific words or phrases over others:

    em {
        font-style: normal;
        text-transform: uppercase;
    }
    
    em {
        font-style: normal;
        text-transform: uppercase;
    }
    
    p {
        line-height: 1.5;
        margin: 0;
    }
    <p>A Gentleman: I suppose he does. But there's no point in asking.
    <p>A Lady: Why not?
    <p>A Gentleman: Because he doesn't row.
    <p>A Lady: He doesn't <em>row</em>?
    <p>A Gentleman: No. He <em>doesn't</em> row.
    <p>A Lady: Ah. I see what you mean.

    Note that the original answer from 2011 (below) applied to HTML standards prior to HTML5, in which <strong> and <em> had somewhat different meanings, <b> and <i> were purely presentational and had no semantic meaning whatsoever. Like <strong> and <em> respectively, they have similar presentational defaults but may be styled differently.


    You use <strong> and <em> to indicate intense emphasis and normal emphasis respectively.

    Or think of it this way: font-weight: bold is closer to <b> than <strong>, and font-style: italic is closer to <i> than <em>. These visual styles are purely visual: tools like screen readers aren’t going to understand what bold and italic mean, but some screen readers are able to read <strong> and <em> text in a more emphasized tone.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

No related questions found

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.