我正在使用
jquery mobile进行演示……
我想让localnav的宽度为100%……
但我不知道该怎么做……
代码在这里……
我想让localnav的宽度为100%……
但我不知道该怎么做……
代码在这里……
<ul data-role="controlgroup" data-type="horizontal" class="localnav"> <li><a href="#" data-role="button" data-transition="fade" class="ui-btn-active">111</a></li> <li><a href="#" data-role="button" data-transition="fade">222</a></li> <li><a href="#" data-role="button" data-transition="fade">333</a></li> </ul>
帮帮我…谢谢……
解决方法
这就是我做的.工作得很好.
CSS:
<style> .ui-grid-a,.ui-grid-a .ui-controlgroup-controls {width: 100%} #homePageButton {width:49%;float:left;margin-left:1%} #logoutButton {width:49%} #footer {height:45px} </style>
HTML:
<div data-role="footer" data-position="fixed" id="footer"> <div data-role="controlgroup" data-type="horizontal" class="ui-grid-a"> <a href="#" data-role="button" data-icon="home" id="homePageButton">Home Page</a> <a href="#" data-role="button" data-icon="forward" data-iconpos="right" id="logoutButton">Log Out</a> </div> </div>
结果: