垂直对齐没有高度或宽度的内联对象

时间:2013-07-25 20:20:46

标签: css alignment vertical-alignment

给出以下html:

<div class="body">    
    <div class="banner">
        <div class="name">
            <h2>
                <a href="http://www.example.com">
                    <span class="bold">Test Link</span><br/>
                </a>
            </h2>
        </div>
        <div class="title">
            <h3>A Connections Learning Partner Program</h3>
            <p>Quality online learning for high school students in Oakland County and surrounding counties.
            </p>
        </div>
        <div class="link">
            <a href="http://www.example.com">Learn More</a>
        </div>
    </div>
</div>

如何在.link a内垂直对齐.link(按钮)而不给出高度或宽度?像这样......

enter image description here

这是我的fiddle

3 个答案:

答案 0 :(得分:1)

这是你可以做到的一种方式。你的HTML很好,不需要改变任何东西。

对于CSS:

.body { width: 920px; }

.banner {
    background-color: #454545;
    border-bottom: 3px solid #F9F9F9;
    height: 100px;
    margin: 0 0 5px;
    padding: 0;
    display: table;
}

.banner > div {
    outline: 1px dotted yellow; /* optional to show cell edges... */
    display: table-cell;
}

.banner .name {
    width: 25%;
    vertical-align: top;
    padding-top: 25px; /* control top white space */
    text-align: center;
}

.banner .name h2 {
    color: #F9F9F9;
    max-height: 55px;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
}

.banner .title {
    width: 50%;
    vertical-align: top;
    padding-top: 25px;
}

.banner .title h3 {
    font-size: 15px;
    font-weight: bold;
    line-height: 15px;
    margin: 0px 0 0 0;
    padding: 0;
}

.banner .title p {
    font-size: 12px;
    max-height: 35px;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.banner .link {
    width: 25%;
    vertical-align: middle;
    text-align: left; /* set to left, center or right as needed */
}

.banner .link a {
    margin-left: 25px; /* controls left offset */
    background-color: #FA9800;
    border-radius: 5px 5px 5px 5px;
    cursor: pointer;
    display: inline-block; /* use inline-block if you want to center element */
    font-size: 12px;
    font-weight: bold;
    height: 23px;
    line-height: 23px;
    text-align: center;
    text-decoration: none;
    width: 100px;
}

请参阅:http://jsfiddle.net/audetwebdesign/jsG8F/

中的小提琴

如何运作

诀窍是在display: table容器上使用.banner,然后在您的孩子display: table-cell元素上使用div,并将%width设置为25%,50%, .name.title.link分别为25%。

然后,您可以使用vertical-aligntext-align来控制各种文本块的垂直和水平位置。

我添加了与使用padding-top控制横幅顶部的空白区域相关的注释。

对于.link a元素,您可以根据需要调整左边距(或右边)。

这些CSS规则为您提供了对横幅内各种元素放置的精确控制。

向后兼容性

display: table-cell属性向后兼容回IE8。

参考:https://developer.mozilla.org/en-US/docs/Web/CSS/display

答案 1 :(得分:0)

如果元素和横幅的大小是固定的,请使用margin-top来偏移元素。

答案 2 :(得分:0)

Marc Audet非常接近,但最终走的路线略有不同。

我给了.link a一个固定的上边距并制作了margin-left: auto;margin-right: auto;,这就行了。

以下是fiddle供参考。