css - Center background image with header -
i have jsfiddle here - https://jsfiddle.net/ow1x3e0a/14/
simple css problem.
i have header need have image on side of. can background image.
when window smaller need center text , image appears in center on left.
at moment text centers image stays on left
i have tried without text-align can't center margin: auto:
.container{ margin-top: 50px; } .header{ font-size: 20px; padding-left: 110px; background-image: url(http://placehold.it/100x50); background-repeat: no-repeat; } @media screen , (max-width:767px){ .header{ text-align: center; } }
when giving background, need use:
background-position: center center;
the text-align: center
or margin: auto
contents, not background.
Comments
Post a Comment