Answers for "hr size bootstrap"

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 make hr class bootstrap full width

/* It is done with the <hr> tag. Then you need to give it a class name, and adjust the margin accordingly. See below for an example. 
  */

.solid {
  margin: 0 -15px;
  border: 0;
  border-top: 1px solid #c9c7c7;
}
Posted by: Guest on September-17-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
16

horizontal line html

<!-- code -->

<hr>

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

Browse Popular Code Answers by Language