Jump to content
  • 0

Как сверстать карточки товара на bootstrap, с границей как ячеек таблицы с border-collapse: collapse?


Drunk_Monkey
 Share

Question

Подскажи как решить задачу:
 

  • Верстка выдачи товаров в категории, с учетом того что кол-во товаров может быть произвольный, и к тому же нечетным кол-ву товаров к колонке 
  • Верстать нужно на bootstrap c учетом адаптива (2,3 4 — карточки в ряду, в зависимости от брейкпоинта) поэтому использовать display: tabel и table-cell не имеет смысла 
  • Не должно быть двойных границ у карточек на стыке по вертикали и горизонтали 
  • Горизонтальных и вертикальных отступов между карточками нет



Решил задавать границы используя nth-child, меняя формулы для разных брекпойнтов.


Ссылка на демо

Не испробовав, даже адаптив, увидел проблему на стыке границ, если карточки в последнем ряду, не кратны кол-ву колонок:

c7dee3d8a4.png

Если более правильное решение задачи и почему границы не сходятся на стыке?

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 1
.container {
  margin-top: 50px;
  border: {
    top: 1px solid lightgray;
    left: 1px solid lightgray;
  }
}

.product-card {
  padding: 50px;
  text-align: center;
  border: {
    bottom: 1px solid lightgray;
    right: 1px solid lightgray;
  }
  &:first-child {
    color: red;
  }
  &:nth-child(4n+4),
  &:last-child {
    color: green;
  }
  &:nth-last-child(-n+4) {
    // color: yellow;
  }
}

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy