Computer >> Máy Tính >  >> Lập trình >> CSS

Đặt Hình nền bằng CSS


Thuộc tính CSS background-image được sử dụng để đặt hình ảnh làm nền cho phần tử đã chọn.

Cú pháp

Cú pháp của thuộc tính CSS background-image như sau -

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

Các ví dụ sau minh họa thuộc tính CSS background-image -

Ví dụ

<!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>

Đầu ra

Điều này cho kết quả sau -

Đặt Hình nền bằng CSS

Ví dụ

<!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>

Đầu ra

Điều này cho kết quả sau -

Đặt Hình nền bằng CSS