43

こんにちは、テキストを の一番下に配置しようとしてい<div>ます。どちらでもvertical-align:text-bottom;ないvertical-align:bottom;

問題はその下にあり、ナビゲーション ボタンを押し下げると位置がずれます。

CSS でこれを回避する方法はありますか?

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}

どんな助けでも大歓迎です。

:)

4

5 に答える 5

52

最新のソリューション

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>

于 2013-09-23T16:31:47.770 に答える
33

適切に使用するには、タグvertical-alignで行う必要があります。しかし、親と子tableに css を割り当てることで、他の html タグをテーブルとして動作させる方法があります。次に、その子に取り組みます。display:tabledisplay:table-cellvertical-align:bottom

HTML:

​​​​​​&lt;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

于 2012-11-27T14:23:07.523 に答える
7

テキストが 2 行にまたがらない場合はline-height: ;、CSS で行うことができます。行の高さを大きくすると、保持されるコンテナーが低くなります。

于 2012-11-27T14:20:36.367 に答える
4

垂直方向の配置は、一部の特定のケースでのみ機能します。これを機能させる最も簡単な方法display: tableは、親要素の CSS とdisplay: table-cell;子要素を設定してから、vertical align 属性を適用することです。

于 2012-11-27T14:19:55.140 に答える