jQuery Mobile 网格空间间隙
我正在使用 jQuery Mobile 布局网格有 2 列,但当单元格高度不同时会存在空间间隙。
例子:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>jQueryMobile Demos</title>
<link type="text/css" rel="stylesheet" href="jquery.mobile-1.0a4.min.css" />
<script type="text/javascript" src="jquery-1.5.2.min.js"></script>
<script type="text/javascript" src="jquery.mobile-1.0a4.min.js"></script>
</head>
<body>
<div data-role="page">
<div data-role="content">
<div class="ui-grid-a">
<div class="ui-block-a"><div class="ui-bar ui-bar-c">Name</div></div>
<div class="ui-block-b"><div class="ui-bar ui-bar-c">Diogo<br />Cardoso</div></div>
</div>
</div>
</div>
</body>
I'm using jQuery Mobile layout grids with 2 columns but there's a space gap when the cell's height is different.
Example:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>jQueryMobile Demos</title>
<link type="text/css" rel="stylesheet" href="jquery.mobile-1.0a4.min.css" />
<script type="text/javascript" src="jquery-1.5.2.min.js"></script>
<script type="text/javascript" src="jquery.mobile-1.0a4.min.js"></script>
</head>
<body>
<div data-role="page">
<div data-role="content">
<div class="ui-grid-a">
<div class="ui-block-a"><div class="ui-bar ui-bar-c">Name</div></div>
<div class="ui-block-b"><div class="ui-bar ui-bar-c">Diogo<br />Cardoso</div></div>
</div>
</div>
</div>
</body>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在文档(在示例中)中,他们使用内联样式标签作为高度。
文档: http://jquerymobile.com/demos/1.0a4 .1/docs/content/content-grids.html
内联样式标签:
style="height:120px"
这是一个工作示例:http://jsfiddle.net/V4uqN/5/
http://api.jquery.com/css/
类似:
In the documentation (in the example) they use a inline-style tag for the height.
Documentation: http://jquerymobile.com/demos/1.0a4.1/docs/content/content-grids.html
inline-style tag:
style="height:120px"
Here is a working example: http://jsfiddle.net/V4uqN/5/
http://api.jquery.com/css/
Something like: