1.在header/tabs或你需要的元素下添加一个元素
<shadow></shadow>
2.设置样式
shadow::before {
content: '';
box-shadow: 0 0 8px 1px #ccc;
position: fixed;
width: 100%;
}
shadow::after {
content: '';
background: #f3f4f6;
position: absolute;
height: 15px;
width: 100%;
}
网友评论