All Questions
4 questions
0
votes
4
answers
16k
views
Let two divs have the same height [duplicate]
I have two divs like that:
<div id="div1">ABC</div>
<div id="div2">ABC DEF GHI JKL MNO</div>
#div1 {
width: 50px;
background-color: red;
float: left;
}
#div2 {
...
0
votes
3
answers
109
views
Floating divs the same height
I would like to make floating divs the same height. I use JavaScript in my current solution although if anyone knows a way to do it in CSS only that would be even better.
Current solution:
I grab and ...
1
vote
3
answers
4k
views
jquery - setting dynamic equal height of a floated div
I have 2 div containers, one navigation on the left, one content right to that:
#leftnav_static
{
padding:5px;
margin-top: 5px;
margin-left: 5px;
height: 1000px;
width: 195px;
font-size: 1.35em;
...
2
votes
5
answers
4k
views
set equal height on multiple divs
I need to set equal height on a series of divs inside another div wrapper. The problem is that I dont want the same height on all of them. The page kind of have 3 columns and the floating divs can be ...