の位置合わせ
内で垂直に
<div id="theMainDiv" style=" border:solid 1px gray; cursor:text; width:400px; padding:0px;" > <span id="tag1_outer" style=" background:#e2e6f0; padding-right:4px; padding-left:4px; border:solid 1px #9daccc; font:normal 11px arial; color:#3c3c3c" >as</span> </div>
次の状況を考えてみましょう。 があるとします。次のコードに見られるように、 デフォルトでは、 オプション 1: 行の高さの操作 子 の行の高さを設定します。 オプション 2: 絶対位置 以上がの内側を垂直方向に整列させるには?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。#theMainDiv {
height: 20px; /* Set the div height for reference */
}
#tag1_outer {
line-height: 20px;
}
#theMainDiv {
position: relative; /* Apply relative positioning to the div */
}
#tag1_outer {
position: absolute;
top: 50%;
margin-top: -10px; /* Half the height of the child span */
}