1
votes

Is it possible to align the columns in height without parrent div (css, html)? That html strucutre for example:

            <div class="one">
                <div class="align1"></div>
            </div>
            <div class="two">
                <div class="align2"></div>
            </div>

I need to align divs with classes "align1" and "align2" without general parrent div.

What would ‘align them in height’ make the final layout look like. Are the two divs next to each other? Are they both to have the height of the tallest? Are they to have the same width, and how are their widths determined? Do they really not sit under a common parent (body if nothing else). - A Haworth
They must be larger. They do not have a common parent. - Семён Ткаченко
No, there must be some parent even if it's just the body. - Paulie_D