@H_404_1@我试图使我的网页的一部分适合浏览器的宽度,为此我使用的宽度:100%,问题是它显示滚动条,我不能使用overflow-x:hidden;因为它会使一些隐藏的内容,所以我该如何解决这个问题?
#news { list-style-type: none; position: absolute; bottom: 0; width: 100%; text-align: center; margin-right: 10px; margin-left: 10px; padding: 0; -webkit-user-select: text; }
解决方法
因为你使用的是position:absolute,而不是使用:
width: 100%; margin-right: 10px; margin-left: 10px
你应该使用:
left: 10px; right: 10px
这将使您的元素的全宽可用,左右10px的空间。