Jump to content
  • 0

Отцентрировать один блок из трех относительно родителя


alex_web64
 Share

Question

Здравствуйте.

Есть вот такой пример https://jsfiddle.net/5dnz61qu/ Мне нужно, чтобы центр зеленого блока всегда находился в центре родительского.

У меня два варианта, но они оба мне не нравятся:

1) Абсолютное позиционирование.

2) Задать синему блоку такую же ширину, как и в красного. В блоках динамический контент, поэтому хотелось бы, чтобы они могли занимать все свободное пространство, а с этим вариантом такого не получится.

Есть еще идеи?

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0
2 часа назад, alex_web64 сказал:

У меня два варианта, но они оба мне не нравятся:

А чем не нравится позиционирование?

<div class="parent">
  <div class="wrap">
    <div class="child child-1">Lorem ipsum dolor</div>
  </div>
  <div class="wrap">
    <div class="child child-2">Lorem ipsum dolor sit amet, consectetur</div>
  </div>
  <div class="wrap">
    <div class="child child-3">Lorem</div>
  </div>
</div>
<div class="center">
  Центр родительского блока
</div>
/* Внешний вид */
body {
  background: #ccc;
}
.parent {
  border: 2px solid #000;
  position: relative;
}
.center {
  text-align: center;
  position: relative;
  padding-top: 20px;
}
.center::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 20px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #f00;
}
.child {
  height: 100px;
  flex-shrink: 0;
  white-space: nowrap;
}
.child-1 {
  background: #f00;
}
.child-2 {
  background: #0f0;
  position: relative;
}
.child-2::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: #f00;
}
.child-3 {
  background: #00f;
}

/* Позиционирование */
.parent {
  display: flex;
  justify-content: space-between;
}
.wrap {
  display: flex;
  width: 33.33%;
}
.wrap:nth-child(2) {
  justify-content: center;
}
.wrap:last-child {
  justify-content: flex-end;
}

 

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