您现在的位置: 万盛学电脑网 >> 程序编程 >> 网页制作 >> DivCSS教程 >> 正文

CSS条状图表进度条

作者:佚名    责任编辑:admin    更新时间:2022-06-22

<style>
    .graph {
        position: relative; /* IE is dumb */
        width: 200px;
        border: 1px solid #ff0000;
        padding: 2px;
    }
    .graph .bar {
        display: block;
        position: relative;
        background: #ff0000;
        text-align: center;
        color: #333;
        height: 2em;
        line-height: 2em;           
    }
</style>
<div class="graph">
    <strong class="bar" style="width: 64%;">cssbbs.com 64%</strong>
</div>