Snippets

Shannon Briggs Equal height and width

You are viewing an old version of this snippet. View the current version.
Revised by Shannon Briggs 2a8670a
.wrap{
    width:300px;
    height:400px;
    border:1px solid red;
}

.child{
    width: 50%;
    border:1px solid blue;
}
1
2
3
<div class="wrap">
    <div class="child"></div>
</div>
1
2
3
4
var cw = $('.child').width();
$('.child').css({
    'height': cw + 'px'
});
HTTPS SSH

You can clone a snippet to your computer for local editing. Learn more.