当前位置:编程学习 > JS >>

CSS直方图布局示例

利用CSS布局一个直方图,可能比较实用,主要是考验使用CSS布局的能力,看看效果吧。
答案:<html>
<head>
<title>CSS直方图示例</title>
<meta http-equiv="Content-Type" content="text/html; charset=gbk">
<style type="text/css">
.chart {
	font-family: Tahoma;
	font-size: 12px;
	border: 1px solid #ccc;
	float: left;
	margin: 0;
	padding: .4em .1em;
}

.chart li {
	list-style: none;
	float: left;
	width: 5em;
	text-align: center;
	background: url(/jscss/demoimg/200911/chart_bg.gif) center 1.6em no-repeat;
}

.chart li span {
	display: block;
	text-indent: -999em;
	padding-bottom: 90px;
	background: url(/jscss/demoimg/200911/chart_bg_ol.gif) center -1px no-repeat;
	border-top: 5px solid #fff;
}

.chart strong {
	display: block;
	text-align: center;
	font-weight: normal;
}
</style>
</head>
<body>
<ul class="chart">
<li>一月<span style="background-position: center -35">: </span><strong>35%</strong></li>
<li>二月<span style="background-position: center -40">: </span><strong>40%</strong></li>
<li>三月<span style="background-position: center -87">: </span><strong>87%</strong></li>
<li>四月<span style="background-position: center -45">: </span><strong>45%</strong></li>
<li>五月<span style="background-position: center -23">: </span><strong>23%</strong></li>
</ul>
<p style="clear: both"></p><p>&nbsp;</p>
<ul class="chart">
<li><em>一月</em><span style="background-position: center -35">: </span><strong>35%</strong></li>
<li><em>二月</em><span style="background-position: center -40">: </span><strong>40%</strong></li>
<li><em>三月</em><span style="background-position: center -87">: </span><strong>87%</strong></li>
<li><em>四月</em><span style="background-position: center -45">: </span><strong>45%</strong></li>
<li><em>五月</em><span style="background-position: center -23">: </span><strong>23%</strong></li>
</ul>
<p style="clear: both"></p><p>&nbsp;</p>
</body>
</html>

上一个:Js模拟弹出层(不刷新弹出内容框、图片、登录框)
下一个:仿IE顶部的警告条,可以关闭

CopyRight © 2012 站长网 编程知识问答 www.zzzyk.com All Rights Reserved
部份技术文章来自网络,