Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

Center <p> in <div> with left alignment?

<body>    
    <div class="about">
        <p>Love<br>
        Robots
        </p>
    </div>
</body>

I want to make Love Robots
with left alignment, but in the center of whole page

Like text and headers in this site: https://deadblog.ru/webdev/vyravnivanie-div-blokov-po-centru-css/

Result will be:

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

begin|    cen|ter    |end

          Love
          Robots
          Another Text

Not like:

begin|    cen|ter    |end

            Love
           Robots
        Another Text

>Solution :

Surround your original div with another one, and adjust the css for .about to match this:

.center {
  text-align: center;
}

.about {
  display: inline-block;
  text-align: left;
}
<body>
  <div class="center">
    <div class="about">
      <p>Love<br> Robots
      </p>
    </div>
  </div>
</body>
Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading