I have 3 div
s. How can I make them equal if the other div
height adjust. I want all my div
s to adjust its height even do they have less co
CSS:
.column-wrapper { overflow: hidden; }
.column-small {
float: left;
margin: 20px;
background-color: red;
padding-bottom: 1000px;
margin-bottom: -1000px;
}
.column-small span { float: right; }
.column-small ul {
margin-top: -10px;
width: 100%;
max-width: 240px;
}
.column-small ul li { text-align: left; }
.column-small li {
list-style: none;
padding: 5px;
text-indent: -30px;
word-wrap: break-word;
}
HTML: