>  기사  >  웹 프론트엔드  >  CSS实现的柱状图效果实例代码_html/css_WEB-ITnose

CSS实现的柱状图效果实例代码_html/css_WEB-ITnose

WBOY
WBOY원래의
2016-06-24 11:31:141254검색

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/

 

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.