猿问

position和z-index都设置了为什么没有效果

.wrap{
	width:800px;
	height:500px;
	margin:0 auto;
	position:relative;
	}
.wrap :after{
	content:'';
	background:transparent;
	position:absolute;
	top:50%;
	bottom:0px;
	right:20px;
	left:20px;
	z-index:-2;
	}

部分代码,想做曲线阴影,为什么设置了z-index,.wrap :after还是在前边????该怎么写???

轉身從此絔鏴
浏览 2407回答 4
4回答

慕男婶

你的错误在于:.wrap 和 :after之间有个空格。。

Joy_Sang

.wrap 设置position:relative;  .wrap :after设置position:absolute; z-index: 负值;

clara89

花括号用英文状态的

echo_kinchao

你确定z-index可以用负数吗。。。
随时随地看视频慕课网APP
我要回答