Prevent Twitter bootstrap empty
filling with next
value

前端 未结 5 2070
一向
一向 2020-12-16 10:04

Hello CSS gurus out there,

I love the twitter bootstrap, and I am prototyping a lot of projects based on it, I encountered this problem, where if the dd tag has no H

5条回答
  •  渐次进展
    2020-12-16 10:25

    I used this style override.

    .dl-horizontal > dd:after {
      display: table;
      content: "";
      clear: both;
    }
    

提交回复
热议问题