导航栏

我的未来我决定 提交于 2020-03-01 06:00:37
<template>
  <div class="box">
    <div v-for="(item, i) in Array(4)" :key='i' class='item'>
      <span>歌曲</span>
    </div>
  </div>
</template>
<style scoped>
  .box{
    display: flex;
    line-height: 44px;
  }
  .item{
    flex: 1;
    background-color: blue;
    color: red;
    text-align: center;
  }
  .item span{
    border-bottom: 2px solid red;
    padding-bottom: 8px;
  }
</style>

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!