css 元素前后添加图标(::before 和 ::after 的妙用)

2023-12-14 13:04:19

在这里插入图片描述

<template>
  <div class="container">
    <div class="label">猜你喜欢</div>
  </div>
</template>

<style lang="scss" scoped>
.label {
  display: flex;
  &::before,
  &::after {
    content: "";
    width: 20px;
    height: 20px;
    background-image: url(./bubble.png);
    background-size: contain;
    margin: -2px 10px;
  }
}
.container {
  margin: 30px;
}
</style>

文章来源:https://blog.csdn.net/weixin_41192489/article/details/134858462
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。