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

CSS实现的柱状图效果实例代码

时间:2015-12-30 13:31:38      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:

CSS实现的柱状图效果实例代码:
柱状图一般用于数据统,比较直观人性化,下面就简单介绍一下如何使用CSS实现此效果。
代码实例如下:

 

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="author" content="http://www.softwhy.com/" />
<title>蚂蚁部落</title>
<style type="text/css">
#wrap 
{
  position:relative;
  width:500px;
  height:600px;
}
#wrap div 
{
  width:15px;
  position:absolute;
  bottom:5px;
  background:#f00;
}
</style>
</head>
<body>
<div id="wrap">
  <div style="height:100px;left:10px"></div>
  <div style="height:200px;left:30px"></div>
  <div style="height:300px;left:50px"></div>
  <div style="height:500px;left:70px"></div>
  <div style="height:200px;left:90px"></div>
</div>
</body>
</html>

 

以上代码非常的简单就是采用绝对定位,控制div的位置,这样就实现了并排效果。

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

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

 

CSS实现的柱状图效果实例代码

标签:

原文地址:http://www.cnblogs.com/zhadanren/p/5088311.html

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