学习小程序第一天

123 阅读1分钟

学习小程序第一天

简单的创建页面

  • 页面标签的创建,放在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;
 }