CSS vertical-align:text-bottom;

时间:2012-11-27 14:16:57

标签: css

您好,我正在尝试将文字放在<div>的底部。 vertical-align:text-bottom;vertical-align:bottom;

问题在于它是我的导航按钮,如果我按下它然后它们会不对齐。

有没有办法可以解决这个问题?

a:link {color:#452809}
a:hover {text-decoration:underline;color:#f00}
a:visited {color:#3886e0}
.fleft {float:left}
.fright {float:right}
.clear {clear:both}
* {border:0;margin:0}
**body {font:12px Tahoma,Arial,Helvetica,sans-serif;color:#666;background:#3cb40d}
#main {margin:0 auto;width:780px;background:#fff url(images/vitalbodyhealth.gif) no-repeat center top}
#header {width:780px;margin:10px; height:210px}
#logo {padding-right:10px;text-align:right;padding-bottom:9px;height:150px;vertical-align:text-bottom} 
#logo a {text-decoration:none;text-transform:lowercase;font-style:italic;font-size:16px;color:#fff;font-weight:bold}
#logo H2 a {font-size:10px}
#buttons {padding-top:0px;height:40px;width:780px}
#buttons li {display:inline}
#buttons a {display:block;float:left;width:80px;height:26px;text-align:center;text-decoration:none;color:#fff;font-weight:bold;font-size:14px;padding-top:0px;margin-left:12px}
#buttons a:hover {width:80px;height:36px;text-decoration:underline}
#content {width:720px;margin:0 auto;padding:20px}**
.inner_copy {border:0;color:#f00;float:right;width:50%!important;margin:-100% 0 0 0;overflow:hidden;line-height:0;padding:0;font-size:11px}
#left {width:450px;padding:10px; background:#EFEFEF}
#left H1, #left H2 {color:#3cb40d;margin:0}
#left H1 {font-size:24px;padding:0}
#left H2 {font-size:18px;padding-top:10px}
#left a {color:#3886e0}
#left a:hover {text-decoration:none;color:#f00}
#left a:visited {color:#3886e0}
#right {float:right;width:240px; background:#EFEFEF}
#sidebar {width:240px;background:#EFEFEF}
#sidebar ul {margin:0;padding:0;list-style:none}
#sidebar li {margin-bottom:15px}
#sidebar li ul {padding:10px;border-top:none}
#sidebar li li {margin:0;padding:3px 0}
#sidebar li h2 {height:36px;margin:0;padding:10px 0 0 20px;background:#47872B;font-size:18px;color:#fff}
#sidebar a:link, #sidebar a:visited {text-decoration:none}
#sidebar a:hover {text-decoration:underline}
#sidebar li a {padding-left:10px;background:url(images/img09.gif) no-repeat 1px 5px}
#footer {background:#452809;height:47px;width:780px;margin:0 auto;font-size:10px;color:#fff;padding-top:23px;text-align:center;}
#footer div {padding:10px 38px}
#footer a {color:#fff;font-size:10px;text-decoration:none}
.padding {padding:10px;color:#f00;font-weight:bold}

非常感谢任何帮助。

:)

5 个答案:

答案 0 :(得分:36)

现代解决方案

Flexbox是针对这些问题而创建的:

#container {
    height: 150px;/*Only for the demo.*/
    background-color:green;/*Only for the demo.*/
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
<div id="container">
    <span>Text align to center bottom.</span>
</div>

旧学校解决方案

如果您不想弄乱桌面显示,那么您可以在相对定位的父容器中创建<div>,将其置于绝对定位的底部,然后使其100%宽,这样您可以text-align到中心:

#container {
    height: 150px;/*Only for the demo.*/
    background-color:green;/*Only for the demo.*/
    position: relative;
}

#text {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
}
<div id="container">
    <span id="text">Text align to center bottom.</span>
</div>

答案 1 :(得分:32)

要正确使用vertical-align,您应该在table代码上执行此操作。但是有一种方法可以让其他html标签表现为一个表格,为你的父母分配display:table的css,并为你的孩子分配display:table-cell。然后vertical-align:bottom将对该孩子起作用。

HTML:

​​​​​​<div class="parent">
    <div class="child">
        This text is vertically aligned to bottom.    
    </div>
</div>​​​​​​​​​​​​​​​​​​​​​​​​

CSS:

​.parent {
    width: 300px;
    height: 50px;
    display:​ table;
    border: 1px solid red;
}
.child { 
    display: table-cell;
    vertical-align: bottom;
}​

以下是一个实例:link demo

答案 2 :(得分:7)

如果您的文字没有溢出两行,那么您可以在CSS中执行line-height: ;,您提供的行高越高,它将容纳的容器越低。

答案 3 :(得分:4)

垂直对齐仅适用于某些特定情况。使其运行的最简单方法是在父元素的CSS中设置display: table,在子元素中设置display: table-cell;,然后应用垂直对齐属性。

答案 4 :(得分:1)

有时你可以玩填充和边距顶部,添加行高等等。

fiddle

来自@aspirinemaga的样式和文字

.parent
{
    width:300px;
    line-height:30px;
    border:1px solid red;
    padding-top:20px;
}