CSS background 연습

by Sehyun Chung

HTML

<div class="wrapper">
	<div class="box"></div>
</div>

CSS

.wrapper {
	width: 200px;
	height: 200px;
	background: yellow;
}
.box {
	width: 200px;
	height: 200px;
	background-image: url(https://www.wpsuperstars.net/wp-content/uploads/2015/01/59.png);
	background-repeat: no-repeat;
	background-size: 20px;
	background-position: 100% 100%;
}