<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>css_attr3</title>
<style>
body {
/* background-image: url('/image/bonobono.jpg'); */
}
div {
width: 500px;
height: 500px;
background-image: url('/image/bonobono.jpg');
}
</style>
</head>
<body>
<div></div>
</body>
</html>
HTML
복사