<html>
<head>
<style>
h1 {
border-bottom-style: solid;
border-bottom-color: rgb(201, 76, 76);
}
div {
border-style: solid;
border-bottom-color: rgb(201, 76, 76);
}
</style>
</head>
<body>
<h1>A heading with a colored bottom border</h1>
<div>The border-bottom-color can be specified with an RGB value.</div>
<p><strong>Note:</strong> Always declare the border-bottom-style or the border-style property before the border-bottom-color property. An element must have a border before you can change the color.</p>
</body>
<!-- Mirrored from www.w3schools.com/cssref/tryit.asp?filename=trycss_border-bottom-color3 by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 05 Jun 2019 13:59:26 GMT -->
</html>