To center a background image in CSS, use the `background-image` property along with `background-position: center;`. This centers the image both horizontally and vertically. You can combine it with `background-size: cover;` to ensure that the image covers the entire element without losing its aspect ratio. Example: `div { background-image: url(image.jpg); background-position: center; background-size: cover; }`