Back again, few months down the line. I've been working on this for awhile now.
Update -
Now we have a little issue that is kind of over my head right now. If we take a look at the following screenshot:
http://i.imgur.com/buUr4.png
As you can see, I have 2 columns which each row is wrapped in a container div. On right side we have the div that contains a 1px border which extends to the bottom of the wrapper div that fits flush taken by it's height.
However, in two of the cases of this screenshot we have the left column with is of a higher height (does that make sense?) thus leaves the right column border short of the left div.
I'll give you the css.
Wrapper div that contains both left and right divs
Code:
#mvc .form-item {
width: 500px;
border-top: 1px solid #9FB9CD;
overflow: hidden;
}
Right div
Code:
#mvc .industry-check-wrap {
width: 280px;
float: left;
padding: 8px;
border-left: 1px solid #9FB9CD;
border-top: none;
overflow: hidden;
}
Left div
Code:
#mvc .industry-label {
float: left;
border: none;
width: 181px;
padding: 7px;
display: inline-block;
}
My question ultimately, is how do I make it so the right div's border extends to the bottom of the wrapper div, if the left div is higher than the right div?
I know this sounds stupid, I have no idea how to explain it better!
Thanks!
Bookmarks