border-inline: border-width| border-style| border-color;Giá trị thuộc tính:
- border-width: Giá trị này chỉ định độ rộng của đường viền.
- border-style: Giá trị này xác định kiểu đường viền như nét đứt liền.
- border-color: Giá trị này xác định màu sắc của đường viền.
<!DOCTYPE html>
<html>
<head>
<title>CSS | border-inline Property</title>
<style>
h1 {
color: green;
}
div {
background-color: yellow;
width: 220px;
height: 40px;
}
.one {
border-inline: 5px solid yellow;
background-color: purple;
}
</style>
</head>
<body>
<center>
<h1>Geeksforgeeks</h1>
<b>CSS | border-inline Property</b>
<br><br>
<div class="one">A Computer Science Portal</div>
</center>
</body>
</html>
Đầu ra:

<!DOCTYPE html>
<html>
<head>
<title>CSS | border-inline Property</title>
<style>
h1 {
color: green;
}
div {
background-color: yellow;
width: 220px;
height: 40px;
}
.one {
border-inline: 5px dashed yellow;
background-color: purple;
}
</style>
</head>
<body>
<center>
<h1>Geeksforgeeks</h1>
<b>CSS | border-inline Property</b>
<br><br>
<div class="one">A Computer Science Portal</div>
</center>
</body>
</html>
Đầu ra:

- Firefox
- Opera
- Edge