fill div with 2 colors?

发布时间:2022-01-19 10:43:21    发布者:文昌文城莱奥网络技术工作室    浏览次数:638

HTML:

<div class="twocolordiv"></div>

CSS:

.twocolordiv  {
position: relative;
z-index: 9;
background: green;
width:500px;
height:100px;
}

.twocolordiv:before {
content: "";
position: absolute;
z-index: -1;
top: 0;
right: 20%;
bottom: 0;
left: 0;
background: red;
}