Programming Code Center(PCC)
[CSS]

(PCC)::[How-to-Set-the-color-of-the-bottom-border]::[css]

File Name : index.html

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

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

</body>
</html>

Output :

This is some text in a paragraph.