css - Placing text in div -
at top of page have header (div) few px distance top of page. in div got page title , placing in top left corner (wich normal). down @ bottom of div (still @ right). html:
<body> <div id="header"> <h1>x</h1> </div> </body>
and css:
#header { width: 700px; height: 200px; margin-left: auto; margin-right: auto; background-color: #ffffff; color: #cdffaf; font-size: 30px; } h1 { margin-top: 5px; }
Comments
Post a Comment