Reputation: 6316
Can you please let me know how I can remove the gap/space between dt and dd in bootstrap Horizontal description?
As you can see from following image there is a big space between dt and dd(highlighted in yellow)
I tried to set the dt cell value by using
.dl-horizontal dt {
width:100px;
}
.dl-horizontal dd {
width:100px;
}
but the property just changed the text size! and the cell remained at the same size and position.
Thanks
Upvotes: 3
Views: 1574
Reputation: 477
This should do the trick:
.dl-horizontal dd {
margin-left: 120px;
}
Upvotes: 2