CSS 进度条

来源:互联网 发布:ubuntu svn checkout 编辑:程序博客网 时间:2024/05/17 06:16


可以把边框和颜色去掉。

<!DOCTYPE html><html><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><head><title>css进度条</title><style type="text/css">.show_yq{    width:380px;    height: 100%;    margin:10px 0 0 10px;}.show_yq div.progress{display: inline-block;min-width: 300px;height: 15px;line-height: 14px;}.show_yq .yqtitle{display: inline-block;height: 25px;line-height: 25px;}.progress span {  float: left;  min-width: 30px;  max-width: 250px;  height: 15px;  line-height: 14px;  border-radius: 5px;  margin: auto 4px auto 0;  border: 1px solid;}.progress .green {  background: #4ac91e;  border-color: #78b337 #6ba031 #568128;}.progress .orange {  background: #ea7222;  border-color: #f0ad24 #eba310 #c5880d;}.progress .gray {  background: #c5cfe5;  border-color: #bfbfbf #b3b3b3 #9e9e9e;}</style></head><body><div class="show_yq">            正面舆情:<div class="yqtitle">                <div class="progress"><span class="green" style="width: 25%;"></span>25%</div>            </div>            负面舆情:<div class="yqtitle">                <div class="progress"><span class="orange" style="width: 15%;"></span>15%</div>            </div>            普通舆情:<div class="yqtitle">                <div class="progress"><span class="gray" style="width: 60%;"></span>60%</div>            </div>        </div></body></html>


0 0