+ 1

How to add two <hr>tag in one line

I want to add two <hr> tag in one line As. -----text------

10th Apr 2020, 10:10 AM
Prince kumar
Prince kumar - avatar
8 Answers
+ 2
<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style> * { box-sizing: border-box; } /* Create three equal columns that floats next to each other */ .column { float: left; width: 33.33%; padding: 10px; height: 300px; /* Should be removed. Only for demonstration */ } /* Clear floats after the columns */ .row:after { content: ""; display: table; clear: both; } </style> </head> <body> <h2>Three Equal Columns</h2> <div class="row"> <div class="column" style="background-color:#aaa;"> <hr /> </div> <div class="column" style="background-color:#bbb;"> <p>text</p> </div> <div class="column" style="background-color:#ccc;"> <hr /> </div> </div> </body> </html>
10th Apr 2020, 10:42 AM
David
11th Apr 2020, 3:07 AM
narayanaprasad
narayanaprasad - avatar
0
you can possibly display as three columns
10th Apr 2020, 10:29 AM
David
0
Please send a code as example
10th Apr 2020, 10:30 AM
Prince kumar
Prince kumar - avatar
0
something like the last post i sent
10th Apr 2020, 10:43 AM
David
0
Thanks
10th Apr 2020, 10:43 AM
Prince kumar
Prince kumar - avatar
0
Why not just: <div id="wrapper"><hr class="inlined"> text <hr class="inlined"></div> <style> #wrapper { text-align:center; } .inlined { display:inline-block; width:30%; position:relative; top:.25em; } </style>
10th Apr 2020, 1:34 PM
visph
visph - avatar