鸽子VV子鸽
2017-07-25 10:30
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>内联块状元素</title>
<style type="text/css">
a,span{
display:inline-block;
width:50px;/*在默认情况下宽度不起作用*/
height:50px;/*在默认情况下高度不起作用*/
background:pink;/*设置背景颜色为粉色*/
text-align:center; /*设置文本居中显示*/
}
</style>
</head>
<body>
<a>1</a>
<a>2</a>
<a>3</a>
<a>4</a><br/>
<span style="color:blue;background:yellow">5</span>
<span style="color:blue;background:yellow">6</span>
<span style="color:blue;background:yellow">7</span>
<span style="color:blue;background:yellow">8</span>
</body>
</html>
试试line-height属性
line-height:50px
加一个line-height:50px。。。OK
将height:50px;改为line-height:50px
初识HTML(5)+CSS(3)-升级版
1225297 学习 · 18230 问题
相似问题