Reputation: 196
I have used div tag for line but i need easy way for this . I only know about div tag for this if you have another solution so please help me
#line{
background-color:black;
height:1px;
width:50px;
margin-top:50px;
margin-left:50px;
float:left;
}
<div id="line">
</div>
Upvotes: 1
Views: 90
Reputation: 9769
.line{
width: 150px;
border: 1px solid coral;
}
<hr class="line" />
<div class="line"></div>
Upvotes: 0
Reputation: 455
You can use svg
for this
<svg height="210" width="500">
<line x1="0" y1="0" x2="200" y2="0" style="stroke:rgb(255,0,0);stroke-width:2" />
</svg>
The y1 attribute defines the start of the line on the y-axis
The x2 attribute defines the end of the line on the x-axis
For more info:https://www.w3schools.com/graphics/svg_line.asp
Upvotes: 2
Reputation: 572
you can use hr tag for line as well like
<hr id="line">
#line{
width:5px
}
Upvotes: 1