WEB.CSS

chapter10 : box_model

GAWON 2023. 5. 18. 09:38
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<style type="text/css">
	.img{
		width: 640px;
		height: 480px;
		background-image: url("images/moon.jpg");
		background-size: 640px 480px;
		background-repeat: no-repeat;
	}
	.des-img{
		border: 5px solid navy;
		width: 600px;
		padding: 10px;
		margin: 10px;
		border-radius: 10px;
	}
</style>
</head>
<body>
	<div class="img"></div>
	<div class="des-img">달 이미지</div>
</body>
</html>