Currently, I am working with a div container (utilizing bootstrap.min.css) that contains another class called divborder. The length of the border-bottom in divborder is quite long and I'm wondering how I can adjust it to be shorter. Below is a snippet of the code:
.divborder {
border-bottom: 6px solid #C6C4C5;
/*what should i put here to shorten this border-bottom?*/
}
<div class="container divborder">
<div class="col-md-6">
some img
</div>
<div class="col-md-6">
some texts
</div>
</div>