每个列表项底部的Jquery Mobile listview缺口

时间:2013-07-21 02:55:16

标签: javascript jquery jquery-mobile jquery-mobile-listview

enter image description here

我想摆脱列表视图底部的差距。

这是我的css

.myParagraph.ui-li-desc {
      color:#333;
      overflow:show;
      white-space:normal;
      height:28px;
      margin-bottom:0px;
    } 

这是我的标记:

listitems_markup = '<li><img src="' + itemThumbnail + '""><div class="myParagraph"><p>You viewed ' + itemName + '</p><p>You spent '+itemTimeSpent+' on this activity</p><p>You '+itemRating+' this item</p></div><p class="ui-li-aside">'+itemViewedTime+'</p></li>';

我将如何摆脱这种差距?

1 个答案:

答案 0 :(得分:1)

试试这个

      listitems_markup = '<li class="nomarigin"><img src="' + itemThumbnail + '"">
<div class="myParagraph"><p>You viewed ' + itemName + '</p><p>You spent '+itemTimeSpent+' on this activity</p><p>You '+itemRating+' this item</p></div><p class="ui-li-aside">'+itemViewedTime+'</p></li>';

在css中

.nomarigin {margin-bottom:0 !important;}