Bootstrap: CSS - height of list-group-item

后端 未结 2 1339
伪装坚强ぢ
伪装坚强ぢ 2021-02-04 10:27

Please Consider follow JSFiddle:

http://jsfiddle.net/7W2r4/12/

As you might notice: the list-group-item is fully collapsed. And i can\'t seem to mak

2条回答
  •  耶瑟儿~
    2021-02-04 10:53

    Removing the float: left; from .itemDescription will fix your issue fiddle, so the complete style for .itemDescription will be:

    .itemDescription
    {
        width: 30%;
        vertical-align: middle;
        height: 100%;
        line-height:100%;
        vertical-align: middle;
    }
    

提交回复
热议问题