首 页 ┆ 源码下载 ┆ IT学院 ┆ 字体下载 ┆ 模板下载 ┆ 源码发布 ┆ 广告合作 ┆ 网站地图 ┆ 虚拟主机 ┆ 中文域名
► 设为首页
► 加入收藏
► 联系我们
源码下载 >> ASP源码 | PHP源码 | ASP.net源码 | JSP源码 | CGI源码 | VC/C++源码 | VB源码 | Delphi源码 | Flash源码
文章学院 >> 网络编程 | 网页设计 | 图形图象 | 数据库 | 服务器 | 网络媒体 | 网络安全 | 操作系统 | 办公软件 | 软件开发 | 黑客知识
字体下载 >> 精制字体 | 非英字体 | 艺术字体 | 著名字体 | 哥特式 | 简单字体 | 手写体 | 节假日 | 图案字体 | 精度像素 | 中文字体
模板下载 >> 企业门户 | 数码网络 | 休闲娱乐 | 影视音乐 | 旅游名胜 | 文化艺术 | 电子商务 | 个性展示 | 登陆导航 | Flash模板
►►您当前的位置:源码园 → IT学院 → 网页设计 → Html/Css → 文章内容

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

作者:佚名  来源:网上收集  发布时间:2007-10-6 2:13:31

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

一、基本的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 class="graph">   
    <strong class="bar" style="width: 24%;">24%</strong>   
</div>

二、复杂的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>   
<dl>   
    <dt>Love Life</dt>   
    <dd>   
        <div style="width:25%;"><strong>25%</strong></div>   
    </dd>   
    <dt>Education</dt>   
    <dd>   
        <div style="width:55%;"><strong>55%</strong></div>   
    </dd>   
    <dt>War Craft 3 Rank</dt>   
    <dd>   
        <div style="width:75%;"><strong>75%</strong></div>   
    </dd>   
</dl>  

三、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 li.info { left: 327px; background-position: -112px  !important; }   
</style>   
<div id="vertgraph">   
    <ul>   
        <li class="critical" style="height: 150px;">22</li>   
        <li class="high" style="height: 80px;">7</li>   
        <li class="medium" style="height: 50px;">3</li>   
        <li class="low" style="height: 90px;">8</li>   
        <li class="info" style="height: 40px;">2</li>   
    </ul>   
</div>


[] [返回上一页] [打 印]
  • 上一篇文章:制作网页时手写CSS应该注意的一点技巧
  • 下一篇文章:ul和li标签结合CSS样式表的进行网页布局

  • 相关文章:
  • CSS代码缩写技巧
  • [图文]在网页中用JS函数控制Flash动画播放
  • 使用缩写形式,促进CSS代码的精简
  • 初学:CSS代码编写的两则小技巧
  • 标准网页中用CSS进行段落排版的方法
  • 网页中用CSS样式表隐藏文字的挺新颖方法
  • 自定义网页超链接下划线的CSS代码
  • 网页中用于构造图表的一些基本CSS代码
关于本站 - 网站帮助 - 广告合作 - 下载声明 - 友情连接 - 网站地图 - 源码发布
Copyright © 2003-2009 Ymyasp.Com. All Rights Reserved .
备案序号:粤ICP备07029071号