index.module.css 553 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
.first {
  background-image: url('/vercel.svg');
}

.first:nth-child(1) {
  background-image: url(/vercel.svg);
}

/* .first:nth-child(2) {
  background-image: url('./vercel.svg');
}

.first:nth-child(3) {
  background-image: url(./vercel.svg);
} */

.first:nth-child(4) {
  background-image: url('../public/vercel.svg');
}

.first:nth-child(5) {
  background-image: url(../public/vercel.svg);
}

.another {
  background-image: url('https://vercel.com/vercel.svg');
}

.another:nth-child(1) {
  background-image: url('https://vercel.com/vercel.svg');
}