Div height equal to another div max-height

前端 未结 4 1355
孤街浪徒
孤街浪徒 2021-01-16 03:49

I have 3 divs:

  • Div
4条回答
  •  被撕碎了的回忆
    2021-01-16 04:25

    Using Javascript, you could do something like:

    document.getElementById("two").style.height = document.getElementById("one").clientHeight;
    

提交回复
热议问题