Create custom style Horizontal Rule HR tag using CSS
Here is how you can create a custom style horizontal rule <hr> tag using CSS:
Apply a class to the <hr> tag:
html
Copy
<hr class="custom-hr">
Add CSS styles to the class:
css
Copy
.custom-hr {
/* Specify height */
height: 5px;
/* Specify...