Align background image to the left centered vertically
I have a background image that I would like cen开发者_如何学Gotered vertically within an element, but aligned to the left of the element. what's the best way to accomplish this?
Use the background-position
CSS property, in this case
background-position: left center;
W3C Reference: Colors and backgrounds
精彩评论