CSS_1강_3_배경(색상, 이미지, 배치)

열라뽕따히·2024년 3월 7일

CSS

목록 보기
4/20

문서 전체 배경 색상

: background-color: lightgray;

배경에 이미지를 지정하는 속성

: background-image: url("images/img.jpg");

배경 이미지를 한 번만 표시하는 속성

: background-repeat: no-repeat;

배경 이미지를 웹 브라우저에 배치하는 속성

: background-position: center;


=============================코드=============================

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<style type="text/css">

		body {
			/* 문서 전체 배경 색상 */
			background-color: lightgray;
			
			/* 배경에 이미지를 지정하는 속성 */
			background-image: url("images/img.jpg");
			
			/* 배경 이미지를 한 번만 표시하는 속성 */
			background-repeat: no-repeat;
			
			/* 배경 이미지를 웹 브라우저에 배치하는 속성 */
			background-position: center;
		}

</style>
</head>
<body>

</body>
</html>

=============================실행=============================

no-repeat 줬을 때

no-repeat 안 줬을 때

0개의 댓글