手机
当前位置:查字典教程网 >网页设计 > Div+Css教程 >三种CSS图表代码
三种CSS图表代码
摘要:这是最基本的预览,下面是几种不同的应用代码一、基本的CSS图表CSS代码style.graph{position:relative;/*IE...

这是最基本的预览,下面是几种不同的应用代码

一、基本的CSS图表

CSS代码

style

.graph {

position: relative; /* IE is dumb */

width: 200px;

border: 1px solid #B1D632;

padding: 2px;

}

.graph .bar {

display: block;

position: relative;

background: #B1D632;

text-align: center;

color: #333;

height: 2em;

line-height: 2em;

}

.graph .bar span { position: absolute; left: 1em; }

/style

div

strong/strong

二、复杂的CSS条形图

CSS代码

style

dl {

margin: 0;

padding: 0;

}

dt {

position: relative; /* IE is dumb */

clear: both;

display: block;

float: left;

width: 104px;

height: 20px;

line-height: 20px;

margin-right: 17px;

font-size: .75em;

text-align: rightright;

}

dd {

position: relative; /* IE is dumb */

display: block;

float: left;

width: 197px;

height: 20px;

margin: 0 0 15px;

background: url("g_colorbar.jpg");

}

* html dd { float: none; }

/* IE is dumb; Quick IE hack, apply favorite filter methods for

wider browser compatibility */

dd div {

position: relative;

background: url("g_colorbar2.jpg");

height: 20px;

width: 75%;

text-align:rightright;

}

dd div strong {

position: absolute;

rightright: -5px;

top: -2px;

display: block;

background: url("g_marker.gif");

height: 24px;

width: 9px;

text-align: left;

text-indent: -9999px;

overflow: hidden;

}

/style

dtLove Life

dd

divstrong/strong/div

/dd

dtEducation

dd

divstrong/strong/div

/dd

dtWar Craft 3 Rank

dd

divstrong/strong/div

/dd

三、CSS竖条图

CSS代码

style

#vertgraph {

width: 378px;

height: 207px;

position: relative;

background: url("g_backbar.gif") no-repeat;

}

#vertgraph ul {

width: 378px;

height: 207px;

margin: 0;

padding: 0;

}

#vertgraph ul li {

position: absolute;

width: 28px;

height: 160px;

bottombottom: 34px;

padding: 0 !important;

margin: 0 !important;

background: url("g_colorbar3.jpg") no-repeat !important;

text-align: center;

font-weight: bold;

color: white;

line-height: 2.5em;

}

#vertgraph li.critical { left: 24px; background-position: 0px !important; }

#vertgraph li.high { left: 101px; background-position: -28px !important; }

#vertgraph li.medium { left: 176px; background-position: -56px !important; }

#vertgraph li.low { left: 251px; background-position: -84px !important; }

#vertgraph { left: 327px; background-position: -112px !important; }

/style

div

ul

li/li

li/li

li/li

li/li

li/li

/ul

【三种CSS图表代码】相关文章:

两个DEDECMS分页样式css代码

通过css加载远程字体示例代码

京东装修的耳朵代码

用CSS设置表格边框的语法详解

CSS3制作loading加载动画效果代码

纯CSS代码实现翻页

网页中用于构造图表的一些基本CSS代码

高效整洁CSS代码

DIV+CSS网页设计常用布局代码

CSS复合选择器使用介绍

精品推荐
分类导航