複数の背景画像を貼る

このarticleの背景に貼った画像はコレ↓
     


article.bgs {
	background-repeat: no-repeat;
	background-image:
		url(/path/to/image/background_lt.png),
		url(/path/to/image/background_rt.png),
		url(/path/to/image/background_lb.png),
		url(/path/to/image/background_rb.png);
	background-position: 
		left top,
		right top,
		left bottom,
		right bottom;
	}

TOP