老师为什么我的城市头部部分点击进去城市列表会靠在最左边,在刷新一下就居中了 这是为什么呢 css代码是你仓库的代码
来源:8-5 Vue项目城市选择页 - 页面的动态数据渲染
hello_mygirl
2019-06-11
2回答
-
Dell
2019-06-11
截图我看一下
112019-06-12 -
hello_mygirl
提问者
2019-06-11
<template>
<div class="header">
<router-link to="/">
<!-- <div class="header-left"> -->
<div class="iconfont header-back"></div>
<!-- </div> -->
</router-link>
城市选择
</div>
</template>
<script>
export default {
name: 'CityHeader'
}
</script>
<style lang="stylus" scoped>
@import '~styles/varibles.styl'
.header
position relative
overflow hidden
height 0.86rem
line-height 0.86rem
text-align center
color #ffffff
background $bgColor
font-size 0.32rem
// .header-left
// width 0.64rem
// top 0
// left 0
// text-align center
// font-size .4rem
// float left
// margin-right 2.3rem
.header-back
position absolute
width 0.64rem
top 0
left 0
text-align center
font-size .4rem
text-align center
color #ffffff
</style>
这是页面代码
这是页面图片
012019-06-14
相似问题