ยังไงให้เด็ก div อยู่ถูกข้างบนเหรอ

0

คำถาม

ฉันมีสอง divs ฉันอยากให้ลูกอยู่บนสุดของพ่อแม่ลำแข้งตัวเองอีกครั้งฉันพยายามแต่เด็ก div ติดอยู่ข้างนอกมันคืออะไรที่ผิดปกติ?

.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ý
..................................................................................................................

ดังอยู่ในนี้หมวดหมู่

ดังคำถามอยู่ในนี้หมวดหมู่