मैं कैसे बच्चे को डाल 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ý
..................................................................................................................

इस श्रेणी में लोकप्रिय

लोकप्रिय सवाल इस श्रेणी में