Is it possible to proportionally scale a div
like an img
using only CSS? Here is my first attempt: http://dabblet.com/gist/1783363
Example
div {
max-width:100px;
max-height:50px;
}
img {
max-width:100px;
max-height:50px;
}
Actual Result
Container: 200 x 100
Div: 100 x 50
Image: 100 x 50
Container: 50 x 100
Div: 50 x 50 // I want this to be 50x25, like the image
Image: 50 x 25