Aligning css arrow boxes

前端 未结 6 1921
深忆病人
深忆病人 2021-01-29 02:08

My question is similar to this question: Arrow Box with CSS But instead of only 1 box I need to align several boxes. And still be able to see the arrow on all boxes.

In

6条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-01-29 02:42

    Just add a margin to the arrow...

    .arrow {
        float: left;
        width: 128px;
        height: 100px;
        background-color: #f0f0f0;
        border: 1px solid #999;
        position: relative;
        margin-right: 15px;
    }
    

    http://jsfiddle.net/LHHzt/11/

    Or change z-index to display above if you want them to overlay

提交回复
热议问题