Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to set same height as width (ratio 1:1)?

Example

+----------+
| body     |
| 1:3      |
|          |
| +------+ |
| | div  | |
| | 1:1  | |
| +------+ |
|          |
|          |
|          |
|          |
|          |
+----------+

CSS

div {
  width: 80%;
  height: same-as-width
}

Thanks in advance!

share|improve this question
You should accept the answer if it answered your question. As new user always a good place to visit: stackoverflow.com/faq – ChrisWue Mar 26 '11 at 21:46
@ChrisWue I know, anyway thanks for tip! – Thomas Norman Mar 26 '11 at 21:50
3  
You really need to accept @Nathan D. Ryan's brilliant pure css hack. Tons of n00bs will miss it and think jQuery is the only answer. – Fred Stevens-Smith Jan 26 at 0:45
1  
Yeah, you should change accepted answer to Nathan's pure CSS solution! – loostro Jan 28 at 16:01

4 Answers

up vote 18 down vote accepted

This cannot be done with CSS alone. Using jQuery you can achieve this by doing

var cw = $('.child').width();
$('.child').css({'height':cw+'px'});

Check working example at http://jsfiddle.net/n6DAu/1/

share|improve this answer
I'm very new to jQuery, any way to get a full source example of this? – Landmine Jul 28 '11 at 4:12
1  
All you need to do is include the jQuery script and css styles. Check full code at jsfiddle.net/n6DAu/24 – Hussein Jul 28 '11 at 6:12
3  
See Nathan's answer. – crappish Jun 20 '12 at 9:26

[Update: Although I discovered this trick independently, I’ve since learned that Thierry Koblentz beat me to it. You can find his 2009 article on A List Apart. Credit where credit is due.]

I know this is an old question, but I encountered a similar problem that I did solve only with CSS. Here is my blog post that discusses the solution. Included in the post is a live example. Code is reposted below.

HTML:

<div id="container">
    <div id="dummy"></div>
    <div id="element">
        some text
    </div>
</div>

CSS:

#container {
    display: inline-block;
    position: relative;
    width: 50%;
}
#dummy {
    margin-top: 75%; /* 4:3 aspect ratio */
}
#element {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: silver /* show me! */
}
share|improve this answer
4  
It's a Christmas miracle! – Coomie Nov 1 '11 at 6:15
2  
Indeed it is, very clever – Drew Dec 17 '11 at 21:25
1  
If only I could up-vote it more then one time, this is great!!!! – ekeren Dec 6 '12 at 13:34
1  
@KenB: Individual elements can be relatively positioned inside the aspect-preserved element. A single line of text can be vertically centered using absolute positioning and stretching (vanseodesign.com/css/vertical-centering) with a height of 1em. Not sure how to do multiple lines of text, or how to position text other than centering, though. – Nathan D. Ryan Feb 16 at 22:04
4  
This can be improved by using the :before pseudo-element. #container:before{content:"";display:block;margin-top:100%;} – Connor Peet Mar 9 at 1:34
show 16 more comments

There is a way using CSS!

If you set your width depending on the parent container you can set the height to 0 and set padding-bottom to the percentage which will be calculated depending on the current width:

.some_element {
    position: relative;
    width: 20%;
    height: 0;
    padding-bottom: 20%;
}

This works well in all major browsers.

share|improve this answer
So cool! It worked really well for me... – riverstorm Feb 28 at 16:17
You are a genius. I didn't even have to use position:relative. – Arcolye Apr 24 at 9:16

There is a clever hack for this here, using an <img> element (because browsers preserve its aspect ratio). But if you don't want to use a hack like this, your other option is to use Javascript and hook onto window.onresize and set the correct height value to match width as appropriate.

share|improve this answer
Looks interesting, I'll try it. Thank you! – Thomas Norman Mar 26 '11 at 21:51
Anyone know where else this hack might exist? The site is not loading. – Jason T Featheringham Jul 30 '12 at 6:34
@JasonTFeatheringham updated the link! – Ben Jul 30 '12 at 18:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.