html - Centering a Text on a DIV is not working -


i have css3 div style definition

.title {     font-size: 1.5em;     letter-spacing: 2.1em;     text-align: center;     font-weight: 100;     font-family: "gill sans", "gill sans mt", "myriad pro", "dejavu sans condensed", helvetica, arial, sans-serif;     } 

i use div , see this:

enter image description here

the title not centered inside div box. have tried change lot of things.

any ideas?

try

title {     font-size: 1.5em;     letter-spacing: 2.1em;     text-indent: 2.1em;     text-align: center;     font-weight: 100;     font-family: "gill sans", "gill sans mt", "myriad pro", "dejavu sans condensed", helvetica, arial, sans-serif;     }  

Comments

Popular posts from this blog

Sort a complex associative array in PHP -

vb.net - How to ignore if a cell is empty nothing -

recursion - Can every recursive algorithm be improved with dynamic programming? -