是否可以使用CSS实现这种倾斜的侧边栏布局?右侧将是我认为倾斜侧边栏布局可能与额外重叠的主要内容。谢谢你的阅读!
答案 0 :(得分:0)
尝试这样的事情......
#shape {
border-top: 100px solid green;
border-right: 20px solid transparent;
height: 0;
width: 100px;
}
答案 1 :(得分:0)
如果要在绿色div中添加一些文本或元素,最好这样做而不是仅创建一个形状。
.main{
width:60%;
background:green;
height:400px;
position:relative;
color:white;
}
.main:after{
content:'';
position:absolute;
right:-40px;
border-top: 400px solid green;
border-right: 40px solid transparent;
}
.side{
margin-left:10%;
width:30%;
}