Computer >> 컴퓨터 >  >> 프로그램 작성 >> CSS

CSS를 사용하여 배경 이미지 설정


CSS background-image 속성은 이미지를 선택한 요소의 배경으로 설정하는 데 사용됩니다.

구문

CSS background-image 속성의 구문은 다음과 같습니다 -

Selector {
   background-image: /*value*/
}

다음 예는 CSS background-image 속성을 보여줍니다 -

예시

<!DOCTYPE html>
<html>
<head>
<style>
#demo {
   margin: 24px;
   box-shadow: 0 0 5px black;
   padding: 20px;
   background-image: url("https://www.tutorialspoint.com/servlets/images/servlets.jpg");
   background-origin: content-box;
   background-repeat: no-repeat;
   background-size: cover;
   text-shadow: 0 1px white;
   font-size: 1.4em;
}
p {
   box-shadow: 0 0 5px grey;
}
</style>
</head>
<body>
<h2>Learn Python Blockchain</h2>
<div id="demo">
<p>Servlets are programs that run on a Web or Application server and act as a middle layer between a requests coming from a Web browser or other HTTP client and databases or applications on the HTTP server.
Using Servlets, you can collect input from users through web page forms, present records from a database or another source, and create web pages dynamically.</p>
</div>
</body>
</html>

출력

이것은 다음과 같은 출력을 제공합니다 -

CSS를 사용하여 배경 이미지 설정

예시

<!DOCTYPE html>
<html>
<head>
<style>
div {
   height: 150px;
   width: 150px;
   background-image: url("https://www.tutorialspoint.com/spring/images/spring-mini-logo.jpg");
   border: 2px solid brown;
}
div > div {
   height: 80px;
   width: 80px;
   margin-right: 50px;
   background-image: url("https://www.tutorialspoint.com/images/hibernate.png");
}
h1 {
   background-image: url("https://www.tutorialspoint.com/hibernate/images/hibernate-patterns.jpg");
   background-repeat: no-repeat;
   color: black;
}
</style>
</head>
<body>
<h1>Demo</h1>
<div>
<div></div>
</div>
</body>
</html>

출력

이것은 다음과 같은 출력을 제공합니다 -

CSS를 사용하여 배경 이미지 설정