Answers for "hr thickness css"

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
1

how to set thickness of hr in html

hr {
  height: 4px;
}
Posted by: Guest on September-22-2021

Browse Popular Code Answers by Language