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
first part looks like a duplicate from https://stackoverflow.com/a/10235116/1902425
to your second part: if you're doing it with js, your height is dynamically calculated, so you can postion your "Read More" link wir position: absolute
little example:
Idont knows
Your content
CSS:
.column-small {
position: relative;
height: 240px;
}
.readmore {
position: absolute;
bottom: 10px;
right: 10px;
}