-2

有谁知道如何将 div 对齐在页面中间而不是 top-center 。必须有白色背景。请在这方面帮助我。帮助我实现这一目标

我的 div 是

<div data-role="fieldcontain" >
用户名:
<div id="b" style="display: inline-block">
<label for="password"><font size="1" color="black">Password : </font></label>
<input type="password" name="password" id="pwd" data-mini="true" value="" style="width: 45%;float: right"/></div>

4

3 回答 3

0

假设这YourDivClass 是一个位于 center 的 div 。

.YourDivClass
{
    position: fixed;
    left: 50%;
    top: 50%;
    background-color: white;
    z-index: 100;

    height: 400px;
    margin-top: -200px;

    width: 600px;
    margin-left: -300px;
}
于 2013-02-01T08:08:45.140 回答
0

由于 jQuery Mobile 独特的功能,纯 CSS 不能用于完美的内容居中。

这是一个专门为 jQM 创建的工作示例:http: //jsfiddle.net/Gajotres/detPg/

$(document).on('pageshow', '#index', function(){   
    $("div[data-role='fieldcontain']").css('margin-top',getRealContentHeight()/2 - $('#b').height()/2);
    $('#b').css('margin-left',$("div[data-role='content']").outerWidth()/2 - $('#b').width()/2);
});

function getRealContentHeight() {
    var header = $("div[data-role='header']:visible");
    var footer = $("div[data-role='footer']:visible");
    var content = $("div[data-role='content']:visible:visible");
    var viewport_height = $(window).height();

    var content_height = viewport_height - header.outerHeight() - footer.outerHeight();
    if((content.outerHeight() - header.outerHeight() - footer.outerHeight()) <= viewport_height) {
        content_height -= (content.outerHeight() - content.height());
    } 
    return content_height;
}

通常水平居中只能通过 css 实现,但由于 jQM 1.3 的新变化,甚至必须通过 javascript 计算。

于 2013-02-01T09:34:40.560 回答
0

好吧,不确定这是否正是您要寻找的,但这是您可以在页面中居中元素的方法,假设那里没有其他内容。

<div id='b'>
some element
</div>

<style>
#b{
position: absolute;
top: 0px;
bottom: 0px;
left: 0px;
right: 0px;
margin: auto;
width: 100px;
height: 10px;
}
</style>
于 2013-02-01T08:04:24.360 回答