Code Thuộc tính border-inline-start-color trong CSS

Code Thuộc tính border-inline-start-color trong CSS

Code Thuộc tính border-inline-start-color trong CSS

Tự code rồi chạy thử... Chạy Thử
<!DOCTYPE html>
<html>
<head>
<title>Code Thuộc tính border-inline-start-color trong CSS</title>
<style>
*{-webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;}
div{width:100%;float:left;height:auto;background:antiquewhite;margin-bottom:10px;padding:10px;border-inline-start-width: 5px;border-inline-start-style: solid;}
span {width:100%; float: left; heigt:auto; margin-bottom:10px}
</style>
</head>
<body>

<h1>Code Thuộc tính border-inline-start-color trong CSS</h1>

<span>Dùng để quy định màu sắc đường viền trái của phần tử HTML, thuộc tính này kết hợp với thuộc tính border-inline-start-style để quy định kiểu đường viền và thuộc tính border-inline-start-width để quy định chiều rộng cho đường viền:</span>

<div style="border-inline-start-color: red;">border-inline-start-color: red;</div>

<div style="border-inline-start-color: #0000FF;">border-inline-start-color: #0000FF;</div>

<div style="border-inline-start-color: rgb(201, 76, 76);">border-inline-start-color: rgb(201, 76, 76);</div>

<div style="border-inline-start-color: rgba(201, 76, 76, 0.3);">border-inline-start-color: rgba(201, 76, 76, 0.3);</div>

<div style="border-inline-start-color: hsl(89, 43%, 51%);">border-inline-start-color: hsl(89, 43%, 51%);</div>

<div style="border-inline-start-color: hsla(89, 43%, 51%, 0.3);">border-inline-start-color: hsla(89, 43%, 51%, 0.3);</div>

<div style="border-inline-start-color: transparent;">border-inline-start-color: transparent;</div>

</body>
</html>
Code Thuộc tính border-inline-start-color trong CSS nằm trong bài viết Thuộc tính border-inline-start-color trong CSS