Jump to content
  • 0

Альтернативный вариант верстки секции


no__name
 Share

Question

Добрый вечер, ребят. Нужно было сверстать секцию(см. картинку). Долго думал как вот это вот все можно реализовать и таки набросал черновой вариант. Собственно у меня вопрос: можно ли это сверстать как-то попроще ? Ну и в дополнение к вопросу, кому не сложно, можете оценить верстку?

9Auh1CyA.png

Edited by no__name
Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

Малость переделал стрелочку, теперь можно обойтись одним псевдоэлементом. А значит у вас из кода можно будет убрать .wrap и кружочки сделать с помощью второго псевдоэлемента для .block

По поводу верстки - зачем вы все с помощью абсолютного позиционирования двигаете? Можно флексами обойтись.

Код для стрелочки:

<div class="box"></div>
.box{
  height: 100px;
  width: 200px;
  background: red;
  border-radius: 10px;
  position: relative;
}
.box:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) rotateX(180deg);
  width: 40px;
  height: 50px;
  background-image: radial-gradient(at 100% 30%, transparent, transparent 79%, red 80%, red),
    radial-gradient(at 0% 30%, transparent, transparent 79%, red 80%, red);
  background-position: 20px;
}

 

  • Like 1
  • Thanks 1
Link to comment
Share on other sites

  • 0
4 минуты назад, no__name сказал:

Ок, спасибо

Да не за что. Я ведь вас только направил в нужное русло, остальное вы сделали сами 🙂 Ну а со стрелочкой самому интересно повозиться было 🙂

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