对齐 垂直在 考虑以下情况:您有一个 嵌套在 默认情况下,将与 选项 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中文网其他相关文章!