在以下示例中:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>Test Button</title>
<style type="text/css">
.myline {
background-color: #FFF;
width: 96%;
padding-left: 2%;
padding-right: 2%;
height: 8vh;
padding-top: 0vh;
border-bottom: 0.3vh black;
border-style: none none solid none;
font-size: 0.9em;
line-height: 8vh;
position:relative;
}
span.testbutton {
width: 5em;
height: 1.5em;
display: inline;
position: absolute;
top: 50%;
right: 0;
margin-top: -0.75em;
background-color: #EEE;
font-size: 0.9em;
}
</style>
</head>
<body>
<div class="myline">
<span class="testbutton">DO IT</span>
</div>
</body>
</html>
...我希望文本在<span>
内呈现,但这就是Firefox 44呈现它的方式:
如上图所示,文字在下面 <span>
- 不在其中,正如我所期待的那样?
如果我从position:absolute;
删除了span.testbutton
,那么文字就在里面了 - 但之后我也无法使用right:0;
。
如何修复我的代码,使文本在跨度内定位?
答案 0 :(得分:2)
我有两个解决方案
第一个解决方案
span.testbutton {
background-color: #eee;
display: inline;
font-size: 0.9em;
height: 1.5em;
margin-top: -19px;
padding: 0 0 10px;
position: absolute;
right: 0;
text-align: center;
top: 50%;
width: 5em;
}
第二个解决方案
span.testbutton { text-align: center; line-height: 1.5em; }
答案 1 :(得分:1)
在您元素的同一height
添加line-height
。
line-height: 1.5em;