我刚刚浪费了一天的时间试图自己找到答案。
我应该有这个(适用于 FF),但是使用 IE7/8(我必须符合 IE7/8)我有这个。
这是代码:
<DIV style="HEIGHT: 10px" class="timeline">
<DIV style="WIDTH: 24px; LEFT: 0px" class=separator title=W1>
<DIV class=left></DIV>
<DIV style="WIDTH: 24px" class=bar></DIV>
<DIV class=right></DIV>
</DIV>
<DIV style="WIDTH: 156px; LEFT: 24px" class=separator title=W2>
<DIV class=left></DIV>
<DIV style="WIDTH: 156px" class=bar></DIV>
<DIV class=right></DIV>
</DIV>
</DIV>
和 CSS :
body{
margin:0;
padding:0;
}
.timeline{
position:absolute;
height:10px;
margin-top:15px;
margin-left:20px;
}
.timeline .separator{
position: absolute;
height:20px;
}
.timeline .separator .left{
position: absolute;
background-color: #000;
left: 0;
width: 1px;
height: 10px;
}
.timeline .separator .bar{
position: absolute;
margin-top:4px;
background-color: red;
height:2px;
}
.timeline .separator .right{
position: absolute;
background-color: #000;
right: 0;
width: 1px;
height: 10px;
}
谢谢你的帮助 !