html - Cannot center header and section inside wrapper -
i have header , section inside wrapper , inside header , section image. i'm trying 1 simple thing - take parent wrapper , it's child elements , center them on page. no matter do, stays flushed left corner of screen. below: html , css.
<!doctype html> <html> <head> <meta charset="utf-8"> <title>katie simone music</title> <link rel="stylesheet" href="css/main.css"> </head> <body> <div id="wrapper"> <header> <img src="images/header1.png"> </header> <section> <img src="images/pic.png"> </section> </div> </body> </html> #wrapper{ max-width:940px; margin:0 auto; padding: 0 5%; }
#wrapper{ max-width:940px; margin:0 auto; padding: 0 5%; text-align:center; }
<!doctype html> <html> <head> <meta charset="utf-8"> <title>katie simone music</title> <link rel="stylesheet" href="css/main.css"> </head> <body> <div id="wrapper"> <header> <img src="images/header1.png"> </header> <section> <img src="images/pic.png"> </section> </div> </body> </html>
add text-align:center
#wrapper style
#wrapper{ max-width:940px; margin:0 auto; text-align:center; padding: 0 5%; }
Comments
Post a Comment