Answers for "html hr thickness and color"

1

css thinner hr

hr {
    border: none;
    height: 1px;
    /* Set the hr color */
    color: #333; /* old IE */
    background-color: #333; /* Modern Browsers */
}
Posted by: Guest on May-25-2020
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
0

make <hr> bigger in boootstrap

<hr style="height:1px;border:none;color:#333;background-color:#333;" />
Posted by: Guest on August-04-2020

Browse Popular Code Answers by Language