Answers for "hr full page"

CSS
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

what does <hr> in html mean

<p>HTML is a language for describing web pages.....</p>

<!--the hr tag stands for horizontal rule and will make a line across your page at that point-->
 <hr>

 <p>CSS defines how to display HTML elements.....</p>
Posted by: Guest on September-25-2020

Browse Popular Code Answers by Language