text-align对内联块级元素同样有效

快乐打工仔 分类:实例代码

这里只陈述一个事实,那就是text-align属性对于块级内联元素也是有效的。

代码实例如下:

<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.pipipi.net/" />
<title>前端教程网</title>
<style type="text/css">
#box {
  width:300px;
  height:200px;
  background:#ccc;
  text-align:center;
}
#antzone {
  display:inline-block;
  background:green;
}
</style>
</head>
<body>
<div id="box">
  <div id="antzone">前端教程网</div>
</div>
</body>
</html>

回复

我来回复
  • 暂无回复内容