Answers for "how to change the color of an hr tag in css"

5

how to change the color of the hr tag in html

<style>       
    hr{
        height: 1px;
        background-color: #ccc;
        border: none;
    }
</style>
Posted by: Guest on September-02-2020
1

css hr color

hr { border: 0; border-top: 1px solid #dee2e6; }
Posted by: Guest on April-06-2021

Code answers related to "how to change the color of an hr tag in css"

Browse Popular Code Answers by Language