如何使用Susy Compass获得SASS图片上标记的效果?
我尝试过使用bleed mixin,但边框位于顶部。是否有具有类似功能和z-index的mixin?菜单设置为向左浮动,内容向右浮动。如果没有,我怎样才能获得这种效果?
答案 0 :(得分:1)
问题是z-index(不是透明度),你可以自己处理,没有任何特殊的混合。除了 z-index
mixin之外,您只需添加自己的bleed
值。 (z-index还需要定位非static
):
.item {
@include bleed(...);
position: relative;
z-index: 20; // adjust as needed...
}