Để tạo hình ảnh đường viền trong CSS, hãy sử dụng thuộc tính hình ảnh đường viền. Sau đây là đoạn mã để tạo hình ảnh đường viền trong CSS -
Ví dụ
<!DOCTYPE html>
<html>
<head>
<style>
body {
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.border1 {
border: 10px solid transparent;
padding: 15px;
border-image: url("https://i.picsum.photos/id/677/200/300.jpg") 30 round;
}
.border2 {
border: 10px solid transparent;
padding: 15px;
border-image: url("https://i.picsum.photos/id/677/200/300.jpg") 2% round;
}
</style>
</head>
<body>
<h1>Border image in CSS</h1>
<p class="border1">Some random sample text inside the paragraph</p>
<p class="border2">Some random sample text inside the paragraph</p>
</body>
</html> Đầu ra
Đoạn mã trên sẽ tạo ra kết quả sau -