background-image: url("cat.png"), url("rays.jpg");
background-repeat: no-repeat, repeat-x;
background-position: center 300px, center top;
background-repeat: no-repeat;
/* Background painted within and under border */
background-clip: border-box;
/* Background painted within padding (not under border) */
background-clip: padding-box;
/* Background painted within content (not padding or border) */
background-clip: content-box;
/* Positoned relative to border */
background-origin: border-box;
/* Positioned relative to padding */
background-origin: padding-box;
/* Positioned relative to content */
background-origin: content-box;
background-size: 300px 40%;
background-size: 50%; /* converts to 50% auto */
background-size: 50% 50%;