html - How to center a (background) image within a div? -


is possible center background image in div? have tried - no success:

<div id="doit">   lorem ipsum ... </div>  //css #doit { background-image: url(images/pic.png); background-repeat: none; text-align: center; } 

is possible?

#doit {     background: url(url) no-repeat center; } 

Comments

Popular posts from this blog

jQuery clickable div with working mailto link inside -

java - Getting corefrences with Standard corenlp package -

WPF: binding viewmodel property of type DateTime to Calendar inside ItemsControl -