只隐藏一个div的溢出



问题是如何隐藏选择div的滚动条,而不隐藏右边的全局滚动条?1

overflow: hidden添加到所需的div样式中。

如果在x轴上溢出使用overflow-x: hidden,在y轴上使用overflow-y: hidden

试试这个

<element/selector>{
height: inherit;
width: inherit
}

<element/selector>{
overflow:hidden;
}

<parent element/selector> <Child element/selector>{
overflow:hidden;
}

相关内容

  • 没有找到相关文章

最新更新