jQuery Mobile 网格空间间隙

发布于 2024-11-04 11:27:09 字数 1185 浏览 1 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

会发光的星星闪亮亮i 2024-11-11 11:27:10

在文档(在示例中)中,他们使用内联样式标签作为高度。
文档: 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/

类似:

$('#element').css('height','120px');

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:

$('#element').css('height','120px');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文