Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
2つの列があり、右側の列の高さをの同じ高さにサイズ変更したいと思いますleft。rightカラムはボトムからカットされています。
left
right
ここに私の問題を示すいくつかのスクリーンショットがあります:
JSフィドル
var s = document.getElementById("leftcolumn").offsetHeight; // you can change leftcolumn here with your left column id document.getElementById("rightcolumn").style.height = s+"px"; // you can change rightcolumn here with your right column id