user1040761
user1040761

Reputation: 1

Css crop background (both sides)

Suppose that I have background image which width = 1000px, height=1000px, my Screen width = 800px. How To trim,crop background to get -100px on left and -100px sides?

Upvotes: 0

Views: 1177

Answers (1)

reedlauber
reedlauber

Reputation: 371

background-position:center center;

or, if you wanted it aligned to the top:

background-position:center top; 

Upvotes: 2

Related Questions