嗨,我有以下 css,它给了我以下结果:
.pop-up .amount {
position: relative;
height: 100%;
width: 195px;
background-color: #e6c515;
background-size: 10px;
padding-left: 18px;
padding-right: 3.5px;
font-size: 29px;
line-height: 32px;
color: white;
float: left;
margin: 3px;
text-shadow: 1px 2px #A7A2A2;
}
.pop-up .amount p {
float: left;
text-shadow: 1px 2px #A7A2A2;
padding-right: 47px;
width: 31px;
line-height: 15px;
text-align: left;
color: white;
font-size: 19px;
vertical-align: middle;
border-right: 2px solid #ACACAC;
height: 100%;
margin-right: 4px;
}
我当前的 html 片段如下
<div class="amount">
<p>1 UNDI</p>RM0.50
</div>
以下是截图:
但我期待的结果是这样的:
似乎1 UNDI
单词没有正确对齐中心并且边框没有完全穿过框,我该如何解决这个问题?谢谢