Ho visto la soluzione per l'altezza in base alla larghezza: css height same as width. O qui: https://stackoverflow.com/a/6615994/2256981. Ma la mia domanda è opposta.Larghezza impostata in base all'altezza
mio elemento:
<body>
<div id="square"></div>
</body>
Stile per esso:
body, html {
margin: 0;
height: 100%;
min-height: 300px;
position: relative;
}
div#square { /* My square. */
height: 75%; /* It's height depends on ancestor's height. */
width: 75vh; /* If supported, preliminarily sets it's width. */
position: absolute; /* Centers it. */
left: 50%; top: 50%; transform: translate(-50%, -50%);
background-color: darkorange; /* Makes it visible. */
}
Scrittura, che lo tiene piazza:
window.onload = window.onresize = function (event) {
var mySquare = document.getElementById("square");
mySquare.style.width = mySquare.offsetHeight + 'px';
};
completo del codice qui: http://jsfiddle.net/je1h/hxkgfr9g/
La domandaè fare la stessa cosa in puro CSS. Nessuno script.
Non so se è possibile farlo in CSS. Potresti provare https://css-tricks.com/snippets/css/a-guide-to-flexbox/, ma non so se questo ti aiuterà. – xdhmoore
Fa questo ciò che stai cercando? http://stackoverflow.com/questions/12899031/css-squares-on-resize – xdhmoore
Penso anche che non sia possibile in puro CSS, provato molte volte ... Dovremo aspettare prima di disegnare quadrati dinamici perfetti! L'unica opzione che vedo è Javascript come hai scritto tu in realtà. – Sebastien