Answers for "hr size css"

1

css hr thickness

hr {
  height: 5px;
  border: none;
  background-color: black;
}
Posted by: Guest on October-21-2021
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
0

hr style height

<hr style="border: none; border-bottom: 1px solid red;">
Posted by: Guest on August-18-2021
0

make <hr> bigger in boootstrap

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

horizontal line html

<!-- code -->

<hr>

<!-- code -->
Posted by: Guest on February-18-2020

Browse Popular Code Answers by Language