weexteam / article

This repos is a third party collection, and is not developed nor maintained by Apache Weex.
1.22k stars 141 forks source link

position:absolute的vDom的100%宽度不生效 #98

Closed jayli closed 8 years ago

jayli commented 8 years ago

vDom 的 position 样式是 absolute 时,宽度设定100%不生效,比如这段代码,运行后看不到子div有宽度

<div style="width:100%;background-color:red;position:relative;height:400">
    <div style="width:100%;background-color:gray;position:absolute;height:100"></div>
</div>

这段代码运行结果:

在客户端里渲染也是一样的bug

Nstd commented 8 years ago

宽度不支持百分比,只支持px,页面默认宽度是750px(会根据屏幕自动缩放),如果想达到100%的效果,就设为750吧