Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
144 views
in Technique[技术] by (71.8m points)

javascript - Same height different divs


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

If you are trying to stretch the <aside> elements to recreate a 3-column layout then this task should be done in CSS only

body {
  display: flex;
  flex-flow: row nowrap;
}

aside {
  flex-basis: 20%;
  border: 1px #9bc solid;
}


#aside2 {
 order: 3;
}
 
/* simulate an height for main element */
main {
  height: 1234px;
  flex: 1;
  margin: 0 5px;
  border: 1px #ccc solid;
}
<body>
<aside class = "a_left" id="aside1">
   <div class="a_left" id="div_aside1">
     
        aside left
    
   </div>
 </aside>
 
 <aside class = "a_right" id="aside2">
   <div class="a_right" id="div_aside2">
    
        aside right
    
   </div>
 </aside>
 
  <main> center </main>
</body>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...