html - Center text to parent element -


i trying center text parent element. here code.

html

<div class="header"><!--header--> <span class="child">  <h1 class="h1temp">         <div class="left">hello</div>         <div class="left down">there</div>         <div class="left downer">james</div> </h1>  </span> </div><!--header--> 

css

.header {     height: 200px;     background-color:#c0c0c0;     position:relative; } .child {     position:absolute;     margin:50% auto;     width:900px; } .h1temp {     margin:0 auto;     font-size: 20px; } 

the problem text aligns browser, not parent element. here looks jsfiddle.

i assume want align h1temp.

margin: x auto works if element has width`

.h1temp {     margin:0 auto;     font-size: 20px;     width: 500px; } 

Comments

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -