以下是:
[]
我在ReactJS中完成了该页面,但我已复制了该页面here。
几个有趣的观察结果:
screen.width
= 375 $('html').width()
= 375,也是$('body').find('div').each(function(idx,e){if($(e).width() > 375) console.log($(e).width())})
不会给我输出任何想法:1)为什么出现白色空间? 2)我怎么能解决这个问题?
PS:以防万一你错过了我把链接放到CodePen的部分,Here it is again。
更新2:我有一个输入框,我将其放在页面外:
<input type="file" class="attache-upload-button" data-reactid=".0.0.1.3.1.1.0.0.1">
对应的风格:
.review-add-form form .uploader .attache-upload-area .attache-upload-button {
position: fixed;
top: -1000px;
}
答案 0 :(得分:1)
我用chrome检查员检查了DOM,我看到<svg class="bar">
的宽度超过了。我试图将overflow: hidden
设置为包含元素.progress-bar-circle
,并且空格消失了