用对角线分割的两个div – CSS

前端之家收集整理的这篇文章主要介绍了用对角线分割的两个div – CSS前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我试图得到两个div来适应页面的整个宽度,但是用对角线分成两半.

如何通过CSS实现两个div?它适用于滑块,需要在完成后添加到每个部件的内容

最佳答案
它可以是这样的

例1

div {
    min-height: 100px;
    background: #D25A1E;
    position: relative;
    width: calc(50% - 30px);
}
.div1 {
    float: left;
}
.div2 {
    float: right;
}
.div1:after,.div2:before {
    content:'';
    position: absolute;
    top: 0;
    width: 0;
    height: 0;
}
.div1:after {
    left: 100%;
    border-top: 100px solid #D25A1E;
    border-right: 50px solid transparent;
}
.div2:before {
    right: 100%;
    border-bottom: 100px solid #D25A1E;
    border-left: 50px solid transparent;
}

fiddle

例2

div {  
    background: #D25A1E;
    min-height: 100px;
    width: calc(50% - 25px);
    position: relative;     
}
.div1 {
    float: left;
}
.div2 {
    float: right;
}
div:after {
    position: absolute; top: 0px;
    content:'';    
    z-index: -1;
    height: 100%;
    width: 50%;
    background: #D25A1E;
}
.div1:after {    
    right: 0;
    transform-origin: bottom right;
    transform: skewX(-20deg);
}
.div2:after {    
    left: 0;
    transform-origin: top left;
    transform: skewX(-20deg);
}

fiddle

原文链接:https://www.f2er.com/css/427503.html

猜你在找的CSS相关文章