html - Center a Div Left Justified Text -


i have header text large font, 2 4 lines. left justified, want centered horizontally , vertically. problem wraps , leaves blank space @ end of div (which set @ width of 600px). want centered horizontally, based not on 600px, width of longest line. there way make div width length of longest line of text?

i guess that's want?

#container {    background:gold;    width:600px;    font-size:2em;    display:inline-block;    }    #title {    width:400px;    margin-right:100px;    margin-left:100px;    margin-top:50px;    margin-bottom:50px;    font-weight:600;    }
<html>  <head></head>  <body>      <div id=container>  <p id=title>here comes long sentence takes 2 lines.</p>  </div>      </body>  </html>


Comments

Popular posts from this blog

java - pagination of xlsx file to XSSFworkbook using apache POI -

Unlimited choices in BASH case statement -

apache - How do I stop my index.php being run twice for every user -