码迷,mamicode.com
首页 > Web开发 > 详细

css如何设置文本在li元素中垂直居中显示

时间:2016-01-30 09:31:35      阅读:773      评论:0      收藏:0      [点我收藏+]

标签:

css如何设置文本在li元素中垂直居中显示:
本章节介绍一下如何利用css将文本设置为在li元素中垂直居中效果。
实现此效果非常的简单,只要利用line-height属性即可。
代码实例如下:

<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>蚂蚁部落</title>
<style>
ul li{
  width:400px;
  height:30px;
  line-height:30px;
  list-style:none;
}
</style>
</head> 
<body>
<ul>
  <li>蚂蚁部落欢迎您,只有努力奋斗才会有美好的未来</li>
  <li>本站的地址是softwhy.com</li>
  <li>每一天都是新的,必须要好好的珍惜</li>
  <li>下一秒都是虚幻的,必须要把握好现在</li>
</ul>
</body>
</html>

只要将line-height属性值和height属性值设置为相同即可,其实不用height属性只是用line-height属性即可。

原文地址是:http://www.softwhy.com/forum.php?mod=viewthread&tid=16621

更多内容可以参阅:http://www.softwhy.com/divcss/

css如何设置文本在li元素中垂直居中显示

标签:

原文地址:http://www.cnblogs.com/xiaofinder/p/5170421.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!