Make A Html With Two Columns Of Equal Height And One Of Them Scrollable
I have a HTML-table consisting of one row and two columns (in other words, just two cells). The idea was to make the two columns (i.e. the two cells) have equal height, which - at
Solution 1:
Here is the solution using CSS:
table {
position: relative;
}
td {
background: red;
width: 200px;
}
.column2>div {
height: 100%;
overflow: auto;
position: absolute;
top: 0;
width: 200px;
}
<table><tr><tdclass="column1"><div> a<br> a<br> a<br></div></td><tdclass="column2"><div> b<br> b<br> b<br> b<br> b<br> b<br></div></td></tr></table>
Post a Comment for "Make A Html With Two Columns Of Equal Height And One Of Them Scrollable"