我有以下代码,我希望能够缩小每个列表视图中缩略图图像和描述列表之间的差距。
我的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"><ul data-inline="true" style="font-size:60%; font-weight:normal;"><li style="white-space:normal">You viewed ' + itemName + '</li><li style="white-space:normal">You spent '+itemTimeSpent+' on this activity</li><li style="white-space:normal">You '+itemRating+' this item</li><p class="ui-li-aside">'+itemViewedTime+'</p></ul></div></li>';
这就是它的样子
答案 0 :(得分:1)
您可能希望减少大多数浏览器自动设置的列表的左边距。
ul{
padding-left:10px; //do not set this to 0 because of the list marks
border-left:0px;
margin-left:0px;
}