Horje
html horizontal line style Code Example
html horizontal line style
<!-- HTML -->

<!-- You can change the style of the horizontal line like this: --> 

<hr style="width:50%", size="3", color=black>  


<!-- Or like this: -->

<hr style="height:2px; width:50%; border-width:0; color:red; background-color:red">

horizontal line html
<!-- code -->

<hr>

<!-- code -->
how to draw a horizontal line in javascript
var elem = document.createElement("hr");
elem.setAttribute("width", "100px");
document.body.appendChild(elem);




Html

Related
html description tag Code Example html description tag Code Example
click button to go to new page css Code Example click button to go to new page css Code Example
link phone number mail html Code Example link phone number mail html Code Example
bootstrap 4 vertical align td Code Example bootstrap 4 vertical align td Code Example
meta no cache Code Example meta no cache Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8