我有以下HTML / CSS代码,其中一行文字显示在带有深绿色轮廓的绿色框中。不幸的是,文本显示在更靠近框的顶部。我希望它在垂直中间。为了达到这个效果我需要做些什么改变?
谢谢, PaulH
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title></title>
<style type="text/css">
.foo
{
outline: 1px solid #98BF21;
color: #333333;
background-color: #EEFFCC;
height: 27px;
font-size: 15px;
font-family: "Lucida Console","courier new";
vertical-align: middle;
margin: 1px 0px 0px;
padding: 0px 5px;
overflow: auto;
display: inline-block;
}
</style>
</head>
<body>
<span class="foo">Lorem ipsum dolor sit amet, consectetur adipisicing elit</span>
</body>
</html>
答案 0 :(得分:2)
请参阅here。
在您的情况下,如果您的文本只有一行,则方法2有效。只需将height
替换为line-height
。
答案 1 :(得分:0)
<div style="display:table-cell; vertical-align:middle;">
Stuff showing in the Vertical Middle of this Div
</div>