stylus 层级

发布于 2022-09-11 17:51:39 字数 2063 浏览 15 评论 0

<template lang="html">
  <div class="seller-contianer">
    <div class="BScroll-warpper">
      <div class="seller-all">
        <div class="seller-top">
          <h1 class="title">{{seller.name}}</h1>
          <star :size="36" :score="seller.score"></star>
          <div class="priceAbout">
            <div class="pleft">
              <p class="title">起送价</p>
              <p class="price">{{seller.minPrice}}</p>
            </div>
            <div class="pright">
              <p class="title">配送价</p>
              <p class="price">{{seller.deliveryPrice}}</p>
            </div>
          </div>
        </div>
        <div class="space">

        </div>
      </div>
    </div>
  </div>
</template>

<script>
import star from '../star/star.vue';
export default {
  components: {
    star
  },
  props: {
    seller: {
      type: Object
    }
  }
};
</script>

<style lang="stylus" scoped>
@import "../../common/stylus/mixin.styl"
  .seller-contianer
    position absolute
    top 174px
    bottom 0
    left 0
    width 100%
    .BScroll-warpper
      width 100%
      overflow hidden
      .seller-all
        margin-top: 18px
        .seller-top
          margin: 0 36px
          border-1px(rgba(7, 17, 27, 0.1))
          .title
            font-size: 14px
            line-height: 14px
            font-weight: 600;
            color: rgb(7,17,27)
</style>

stylus
不是按层级来使用么
.title 应该只是应该只是对.seller-top下的<h1 class="title">{{seller.name}}</h1>有用吗
如果对另两个<p class="title">配送价</p><p class="title">起送价</p> 起作用不应该在来两个空格吗

    .seller-top
      margin: 0 36px
      border-1px(rgba(7, 17, 27, 0.1))
      ...
          .title
            font-size: 14px
            line-height: 14px
            font-weight: 600;
            color: rgb(7,17,27)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

橘寄 2022-09-18 17:51:39

跟css的规则差不多的,只要是.seller-top下的.title 都会有效的

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文