Ngôn ngữ CSS - Màu khung viền top

Màu khung viền top

<!DOCTYPE html>
<html>
<head>
<style>
p {
  border-style: solid;
  border-top-color: #ff0000;
}
</style>
</head>
<body>

<p>This is some text in a paragraph.</p>

</body>
</html>

Xem ví dụ