日期:2014-05-17  浏览次数:20761 次

CSS进度条显示
<html>
<head>
<style type="text/css">
.schedule{ 
background: url(http://assets.dj10.net/images/chrome/proportion.gif)  repeat-x scroll left center transparent; 
width:80px;
height: 11px;
font-size:0;

}
.mine{
 background: url(http://assets.dj10.net/images/chrome/proportion.gif) repeat-x scroll left bottom transparent;
 width: 50%; /*进度条控制*/
height: 11px;

}


</style>
</head>

<body>
  <div class="schedule">
     <span class="mine"></span>
  </div>
</body>

</html>

?

1 楼 cwj158 2011-11-06  
我用的是IE8,以上代码运行时没有效果。