Как я могу поместить ребенка div справа сверху?

0

Вопрос

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

.content {
  align-items: center;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  height: 200px;
  min-height: 140px;
  min-width: 140px;
  border: 1px solid;
}

.topcorner {
  width: 42px;
  height: 42px;
  background: red;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
<div class="content">
  <div class="topcorner">top</div>
</div>

css
2021-11-24 04:58:32
1

Лучший ответ

2

Родительский элемент должен иметь position: relative.

Добавить position: relative в родительский класс .content чтобы сделать дочерний div внутри родительского div.

.content {
  align-items: center;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  height: 200px;
  min-height: 140px;
  min-width: 140px;
  border: 1px solid;
  position: relative; //Add this line
}

.topcorner {
  width: 42px;
  height: 42px;
  background: red;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
<div class="content">
  <div class="topcorner">top</div>
</div>

2021-11-24 05:02:48

На других языках

Эта страница на других языках

Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................