uni-app的宽度是750upx吗?为什么在我安卓手机右边会出现一条空白的垂直细线
<template>
<view class="on0">
</view>
</template>
<script>
export default {
data() {
return {
};
}
}
</script>
<style>
.on0{
width: 750upx;
height: 80upx;
background: #f00;
}
body{
margin: 0;
padding: 0;
border: 0;
}
page{
margin: 0;
padding: 0;
border: 0;
}
</style>
1***@qq.com (作者)
那是我额外写没啥作用,我直接设置750他也不能满屏幕宽度
2018-11-20 17:01
DCloud_heavensoft
你把margin和padding写到正确的地方
2018-11-20 18:26