Jump to content

elcohen

Members
  • Posts

    5
  • Joined

  • Last visited

Posts posted by elcohen

  1. 1 hour ago, Ingolme said:

    You need CSS if you want to properly make a web page. To center a block of text you can set the max-width of the container and give it a left and right margin of auto.

    HTML

    
    <div class="text">
      <p>Lorem ipsum dolor sit amet</p>
    </div>

    CSS

    
    .text {
      max-width: 600px;
      margin: 0 auto;
    }

     

    Thanks for your reply @Ingolme ツ 

    I'm trying to make this work in Tumblr. It has a section that allows me to 'add CSS' but it doesn't seem to work. Do you know how to get around this?

    Thx

×
×
  • Create New...