【发布时间】:2021-01-04 23:58:10
【问题描述】:
我有一个图像,即使它的父级设置为overflow: hidden 仍会溢出并在页面上创建水平滚动。 Shown here
以下是相关代码:
.section2img {
overflow-x: hidden !important;
height: min-content;
position: relative;
width: 50vw;
right: -60%;
top: 0;
}
.section2 img {
position: relative;
overflow-x: hidden !important;
}
GitRepo if needed
【问题讨论】:
-
您是否尝试将
body设置为overflow-x: hidden? -
是的,
body和html都设置为overflow-x: hidden
标签: css image styles overflow parent-child