Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to increase the width of the horizontal line using markdown git hub

I am using below code for drawing the horizontal line

"-----"

"***"

I want to change the color of the horizontal line plus change the height also.

Any idea how to do this.

Thanks in advance.

BR, Mayur

like image 550
mayur rahatekar Avatar asked Dec 29 '16 07:12

mayur rahatekar


People also ask

How do I make a horizontal line in markdown?

You can create a horizontal rule ( <hr /> ) by placing 3 or more hyphens, asterisks, or underscores on a single line by themselves.

How do I add a horizontal line in GitHub?

Horizontal Rule To add a Horizontal Rule In Readme we can use --- or *** or <hr> .

How do you draw a straight line in markdown?

If your Markdown application supports HTML, you can use the <br> HTML tag. For compatibility, use trailing white space or the <br> HTML tag at the end of the line.

How do I make a new line in markdown?

In a Markdown file or widget, enter two spaces before the line break to begin a new paragraph, or enter two line breaks consecutively to begin a new paragraph.


1 Answers

instead of using *** or --- , try

<hr style="border:2px solid gray"> </hr> 
like image 127
Suman Avatar answered Sep 27 '22 20:09

Suman