学习小程序第一天
简单的创建页面
- 页面标签的创建,放在
index.wxml
<view class="navs">
<text class="active">精选</text>
<text>蔬菜</text>
<text>内衣</text>
<text>母婴</text>
<text>儿童</text>
<text>手机</text>
</view>
- 简单的样式,放在
index.wxcss里面
.navs{
display: flex;
justify-content: space-evenly;
align-items: center;
height: 40px;
font-size: 14px;
}
.active{
color: #00b26a;
border-bottom: solid #00b26a;
}