Did you know that when you format your text in WordPress you may be adding or changing the CSS in your page? 

When editing text in wordpress using the available options like bold, text color, or alignment. Not only do you change how the text looks visually but, it adds CSS behind the scenes. 

  1. Bold:

  • Button: B (Bold)
  • CSS: font-weight: bold;
  • HTML: <strong>
  1. Text Color:

  • Button: Text Color Picker
  • CSS: color: #red;
  • HTML: style=”color:red;”
    1. Text Alignment:

    • Button: Align (left,center, or right)
    • CSS: text-align: left; , text-align: center; , text-align: right;
    • HTML: CSS applied to <p>

        Examples:

        Example of normal text that isn't bold
        How HTML makes text bold
        Example of normal text that isn't green
        How Html makes text green
        Example of normal text that isn't aligned
        How HTML makes text alignment center