我不明白。我想要一条带箭头的简单线,所以我使用一个带边框和背景图像的类:
hr {
padding-top: 10px;
border: none;
border-top:dotted #000 1px;
background: #fff url("img/arrow.gif") no-repeat 100px -1px;
}
不幸的是,背景低于边界:
我试过z-index
了,“id beats class”(用<hr id="arrow">
)但没有任何效果。有解决办法吗?
顺便说一句,css-cracks如何用箭头做这样的虚线?