「労働者が自分の仕事をうまくやりたいなら、まず自分の道具を研ぎ澄まさなければなりません。」 - 孔子、「論語。陸霊公」
表紙 > プログラミング > の内側を垂直方向に整列させるには?

の内側を垂直方向に整列させるには?

2024 年 11 月 9 日に公開
ブラウズ:333

How to Vertically Align a  Inside a ?

内で垂直に配置する

次の状況を考えてみましょう。 がネストされています。 div>、次のコードに見られるように:

<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: 行の高さの操作

行の高さを設定します。子の

の高さと等しくします。
#theMainDiv {
  height: 20px; /* Set the div height for reference */
}

#tag1_outer {
  line-height: 20px;
}

オプション 2: 絶対配置

コンテナに絶対配置を適用します。次に、子 を絶対に top:50% に配置し、margin-top:-YYYpx を使用します。YYY は、子の既知の高さの半分を表します。
#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 */
}

詳細とその他のテクニックについては、垂直方向の配置の理解に関する提供された記事を参照してください。

最新のチュートリアル もっと>

免責事項: 提供されるすべてのリソースの一部はインターネットからのものです。お客様の著作権またはその他の権利および利益の侵害がある場合は、詳細な理由を説明し、著作権または権利および利益の証拠を提出して、電子メール [email protected] に送信してください。 できるだけ早く対応させていただきます。

Copyright© 2022 湘ICP备2022001581号-3