How to add border bottom lined with hr tag

Alghany Jagad

So i want to make something looking like this:

enter image description here

but when i try it only look like this:

enter image description here

Here's my code:

            <div class="col-md-12">
                <div class="card">
                    <div class="card-body">
                        <h5 class="card-title"><span class="border-bottom border-primary">Daftar Kategori</span></h5>
                        <hr>
                    </div>
                </div>
            </div>
Shahryar Mohajer

you can use :after selector with position relative and absolute , check this:

h5{
     position:relative;
}
h5:after
{
    content:' ';
    display:block;
    border-bottom:4px solid #409bf7;
    width:200px;
    position:absolute;
    padding-bottom:21px;
}
hr{
    border-top:none;
    border-bottom: 2px solid #666;
}
   <div class="col-md-12">
                <div class="card">
                    <div class="card-body">
                        <h5 class="card-title"><span class="border-bottom border-primary">Daftar Kategori</span></h5>
                        <hr>
                      
                         <h5 class="card-title"><span class="border-bottom border-primary">Daftar Kategori</span></h5>
                        <hr>
                      
    
                         <h5 class="card-title"><span class="border-bottom border-primary">Daftar Kategori</span></h5>
                        <hr>
                      
                         <h5 class="card-title"><span class="border-bottom border-primary">Daftar Kategori</span></h5>
                        <hr>
                    </div>
                </div>
            </div>

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

How to create a dotted <hr/> tag?

How to add a colored bottom border on a rounded corner Container in flutter?

how add a border only on bottom of EditText?

How to add a border-bottom-image with css

How to add bottom border to tableview section header

Android - How to add a bottom (focused) border to spinner?

How to style up a hr tag

How to keep a <hr> in the bottom of element?

How to add border bottom hover effect in Bootstrap navbar?

How can I add a border to the top and bottom of an iOS grid in Xamarin?

Add animation to border bottom on input

How to add bottom border of current row after if statement is true?

Add bottom border of to tabs in Flutter

How do I add a border under each navigation link without making the bottom border more bold

How to add Floating action Button in Bottom Navigation Bar in Center with border?

How to add only a bottom border to input fields in tkinter?

How to add a border-bottom or a horizontal line below the table heading

How can i add border to bottom of image?

How to add bottom border to text in Word?

How to apply two colors to bottom border of header tag?

How can I add a bottom border to an Excel range in C#?

Add border-bottom under the tr tag

How to add border-top with rounded bottom corners to <li> elements?

Add bottom and right border to image

How to add small circle in the bottom boarder using CSS with the line border

Why there is additional white space at the bottom of the hr tag?

Fullcalendar how to add bottom border to calendar view except grid axis?

React Navigation Version 6: How to add header bottom border and change border color?

How add border bottom to last div if there will be additional div?