twitter-bootstrapbootstrap-4html-heading

Bootstrap center heading


It is my first Twitter Bootstrap experience. I have added some headings (h1, h2, etc.) and they are aligned by left side. What is the right way to center headings?


Solution

  • .text-left {
      text-align: left;
    }
    
    .text-right {
      text-align: right;
    }
    
    .text-center {
      text-align: center;
    }
    

    bootstrap has added three css classes for text align.