我在div里面的php中有以下代码
<div class="stage_container_four">
<?php
if ($answer == $correct && $refer_question == 0) {
echo $xp_value," ", "Points earned.";
}
else {
echo "Already answered or wrong answer.";
}
?>
</div>
在CSS上我有这个:
.stage_container_four {
margin-left:50px;
margin-top:20px;
height: 30px;
float:left !important;
font-family: Oxygen, sans-serif;
font-size:12px;
color:rgba(160,78,0,1.00);
line-height: 30px;
text-indent: 20px;
text-transform:none !important;
background-color:rgba(255,202,0,0.70);
border-radius: 25px;
}
我希望回声文本从左到右分别为20px,但是只有左侧是20px,这是预期的响应,但右侧文本在背景颜色的边框结束时结束。我现在如何从右侧获得20px的保证金或身份?
请注意没有宽度。
谢谢, _oliver
答案 0 :(得分:1)
d
删除css中的margin和text-indent