使用 CSS 的一些技巧

scoped  在 style 中写 scoped 可以起到隔绝样式的作用,这样就避免了项目中的样式污染,起到了 css 模块化的作用。

:deep()  在使用 UI 框架时 ,有时需求的样式会和UI有些出入,当你修改某个组件的样式不生效时,可以尝试用它来起到样式穿透的作用,让你自己写的样式生效。

:slotted()  在子组件可以修改父组件中插槽模板的样式

父组件

<template>
  <div>
    <A>
      <template #default>
        <div>
          111111
          <img src="./assets/1.jpg" alt="" class="img">
        </div>
      </template>
    </A>
  </div>
</template>

<script setup lang="ts">

</script>

<style scoped lang="less">
img {
  width: 200px;
  height: 300px;
  object-fit: cover;
}
</style>

子组件

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

<script setup lang="ts">

</script>

<style scoped lang="less">
:slotted(.img) {
    width: 400px;
    height: 500px;
    object-fit: cover;
}
</style>

:global()  全局样式,可以使你写的样式应用到全局

动态css

第一种形式

<template>
  <div>
    <text>1111</text>
  </div>
</template>

<script setup lang="ts">
const color = ref('red')

</script>

<style scoped lang="less">
text {
  color: v-bind(color)
}
</style>

第二种形式

<template>
  <div>
    <text>1111</text>
  </div>
</template>

<script setup lang="ts">
const bgc = ref({
  color: 'green'
})
</script>

<style scoped lang="less">
text {
  color: v-bind('bgc.color')
}
</style>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

微光无限

破晓的日子还有很多!

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值