Can I add a border to two Bootstrap rows?

I want one border around my description and list, but I don’t know how I can ask for this in the code. There are already a lot of divs and classes etc!


`

On the <div> around the description, you can add a new class (say, descriptionDiv).

Then add this to the CSS:

.descriptionDiv {
  border-bottom: 3px solid;
}

Side note: your <div> before the <img> tag has a missing double quote mark.
Like this: <div class="col-xs-4>

1 Like

Making use of Bootstrap, would panels do for what you want? http://getbootstrap.com/components/#panels