0

我正在尝试将 jquery mobile listview 放在父 div 中,但 listview 忽略任何父 css 规则。

<div data-role="page" id="profile">
    <div data-role="content">
     <div class="content_white">
        <ul data-role="listview" data-theme="c"  class="custom-list">
            <li>test</li>
            <li>one</li>
        </ul>
     </div>
   </div>
 </div>

父 div 具有以下 CSS 规则

.content_white{
position:relative;
margin-bottom:5% !important;
background-color:#ffffff;
border:1px solid #cccccc;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;

}

基本上我希望列表视图嵌套在父 div 中

JS小提琴答案

4

1 回答 1

0

将列表中的边距居中似乎可以解决问题

.custom-list{
margin: 0 auto !important;
padding-bottom:1%;
 }
于 2012-08-23T06:29:22.890 回答