我在框(Example)上应用了左边距后,我的右边框丢失了。 如果我删除左边空白(Example),没有问题。 有什么办法解决吗?
Css:
position: absolute;
border-color: grey;
border-style: solid;
z-index: 10;
width: 96%;
margin-left: 40px;
height: 52.05rem;
top: 0.3rem;
答案 0 :(得分:0)
width
的元素大于width
容器。所以试试这个:
width: calc(96% - 40px);
答案 1 :(得分:-2)