html - 在 div 中垂直居中文本

标签 html css

我需要你的帮助,

文本如何在我的自定义警告框中垂直居中。

我认为通过现有的 css 属性:

#alertBox_text {
  width: 100%;
  height: auto;
  text-align: center;
  margin-top: 10px;
}

它会自动显示为居中。

<!DOCTYPE html>

<html>

<head>
    <meta charset="utf-8">

<style type="text/css">
/*--------------------------------------------------------------------------------------------------
    CUSTOM ALERT BOX
--------------------------------------------------------------------------------------------------*/
#alertBox_container {
    left: 50%;
    padding: 10px;
    top: 50%;
    margin: 0;
    padding: 0;
    height: 100%;
    border: 1px solid #808080;
    position: relative;
    color: rgb(11,63,113);
    font-family: Arial;
    background: #FFF;
    visibility: hidden;
}
#alertBox {
    height: 100px;
    width: 400px;
    bottom: 50%;
    right: 50%;
    position: absolute;
    font-size: 9pt;
}
#alertBox_titlebar {
    line-height:24px;
    width: 100%;
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#cdcdcd");
    font-weight: bold;
}
.alertBox_Button {
    color: #464646;
    border: 1px solid;
    border-color: #999 #666 #666 #999;
    background-color:#ccc;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#ffffff', EndColorStr='#E7E7E7');
}
.alertBox_Button:hover {
    background-color: #ddd;        
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#fafafa', EndColorStr='#dddddd');
    color: #000000;
}

#alertBox_close {
    line-height: 10px;
    width: 18px;

    font-size: 8pt;
    font-weight: bold;

    margin-top: 2px;
    margin-right: 2px;
    padding-top: 2px;
    position:absolute;
    top:0;
    right:0;
}

#alertBox_text {
  width: 100%;
  height: auto;
  text-align: center;
  margin-top: 10px;
}

</style>

<script type="text/javascript">
/*--------------------------------------------------------------------------------------------------
    CUSTOM ALERT BOX
--------------------------------------------------------------------------------------------------*/
function alertBox(text, type) {

    if (type == "err") {
        document.getElementById('alertBox_text').style.color = "#FF0000"
        document.getElementById('alertBox_div_btn_OK').innerHTML = "<input class='alertBox_Button' id='alertBox_btn_OK' type='button' value='OK' onclick='alertBox_hide()'>"
    }
    else if (type == "sucess") {
        document.getElementById('alertBox_text').style.color = "#008000"
        document.getElementById('alertBox_div_btn_OK').innerHTML = "<input class='alertBox_Button' id='alertBox_btn_OK' type='button' value='OK' onclick='alertBox_hide()'>"
    }
    else if (type == "ok") {
            document.getElementById('alertBox_div_btn_OK').innerHTML = "<input class='alertBox_Button' id='alertBox_btn_OK' type='button' value='OK' onclick='alertBox_hide()'>"
    }

    document.getElementById('alertBox_text').innerHTML = text

    document.getElementById('alertBox_container').style.visibility = 'visible'


}
function alertBox_hide() {

    document.getElementById('alertBox_container').style.visibility = 'hidden'

}


</script>

</head>

<body onload="alertBox('testing the system')">

<div id="alertBox">
    <div id="alertBox_container">
        <div id="alertBox_titlebar"><span style="padding-left: 3px;">IMTS</span></div>
        <div><input class="alertBox_Button" id="alertBox_close" type="button" value="X" onclick="alertBox_hide()"></div>
        <div id="alertBox_text"></div>
        </div>
    </div>
</div>

</body>

</html>

最佳答案

Text-align 仅适用于水平对齐。

如果您希望垂直对齐文本并且知道容器的高度,则可以使用 line-height 属性通过将其设置为等于高度来垂直对齐单行文本。

或者,使用此处记录的技术之一:http://css-tricks.com/centering-in-the-unknown/

关于html - 在 div 中垂直居中文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19305912/

相关文章:

javascript - SoundManager2:如何附加当前播放声音的 onfinish 事件回调

css - HTML 网站不会居中

css - 下面一个 div,不在右边,其他的

javascript - jQuery 滚动到 anchor 标签时滑出一个 DIV ~

html - 我对第 n 个 child 有一些问题

css - 固定 Fluid margin-top 随着浏览器宽度的增加而增加

css - 父 DIV 中有 2 个 float DIV 和 1 个居中 DIV

jquery - 哈希 anchor 在点击时隐藏内容

php - 如何在 HTML 中运行 PHP?

javascript - 如何获得相对于另一个 div 但具有 z-index 的 div