본문 바로가기
프로그램 개발(분석, 설계, 코딩, 배포)/2.1.2 web_css

web_css_예제1

by 3604 2023. 1. 5.
728x90

<html>
<head>
<meta charset="utf-8">
<title>css1</title>
<!-- 1. css 소스 분리 방식-->
<!--<link href="style.css" rel="stylesheet" type="text/css">-->

<!-- 2. css 소스 삽입 방식-->
<style type="text/css">
body{
/* color: red;*/
/* color: #8ac007;*/
height: 4000px;
line-height: 1;
text-align: justify;
/*
word-spacing: 4px;
letter-spacing: -2%;
background-color: #000;
*/
background-image: url("2. css/"testimg.bmp"")
background-repeat: no-repeat;
background-position: 200px 500px;
background-attachment: scroll;
/*     color: #FFFFFF;*/
}
</style>
</head>

<body>
예제 문장입니다.
</body>
</html>

728x90