无论如何,当高度设置为时,我是否可以将vertical-align
文本显示在border-top
我可以低于的内容之上?border-bottom
height:0px;
HTML:
<ul id="experiment" style="background: #FFDD00;">
<li id="test1"><span class="v-align-bot">Chocolate</span></li>
<li id="test2"><span class="v-align-top">Potato</span></li>
</ul>
CSS:
#test1 {
height: 0px;
border-bottom: 50px solid #648291; /*grey*/
}
#test2 {
height: 0px;
border-top: 50px solid #FA8723; /*orange*/
}
.v-align-bot {
vertical-align: -50px;
}
.v-align-top {
vertical-align: 50px;
}
巧克力很容易在border-bottom
. Potato确实在the上方对齐,li
但也border-top
跟随(?)它。
TL; DR:无论如何我可以使BUTTON
下面这个小提琴中的 s 正确对齐吗?