對齊垂直在 考慮以下情況:您有一個嵌套在 預設情況下,將與 選項1:行高操作 設定子元素 的行高等於 選項 2:絕對定位 對 請參閱提供的有關理解垂直對齊的文章以了解更多詳細資訊和其他技術.<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>
#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 */
}
以上是如何垂直對齊 a 內部?的詳細內容。更多資訊請關注PHP中文網其他相關文章!