商品画像の左上に「NEW」というラベルを表示

このようなイメージでしょうか。

横並びにしています。

liquid

{% for tag in card_product.tags %}
    {%- if tag == 'label_new' -%}
      
        New
      

    {%- endif -%}
    
    {%- if tag == 'label_sell' -%}
      
        売れています
      

    {%- endif -%}
  {% endfor %}

css

.card--tag {
    font-size: 1.2rem;
    position: absolute;
    top: 0px;
    color: #333;
    background-color: #efdf1d;
    padding: 10px;
    z-index: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .card--tag.new {
    left: 0;
  }
  .card--tag.sell {
    left: 60px;
  }
1 Like