質問で、要素に style="width:100%; height:auto;" がある場合に要素の正確な px の高さまたは幅を取得する方法を尋ねるのと同じように 例えば。
div 内にネストして高さ/幅を取得することはできません。
ここでJavaScriptが役立つと思います。
編集:私はこれを使用しています:
var collectNodes = document.getElementById('fade').children;
collectNodes[y].height() // ??
次のコードは、文字列「auto」を提供します。
collectNodes[0].style.height;
EDIT2:これは私のコードです。
<div id="divId">
<img class="node" src="somePic0.png" style="z-index:10; opacity:0;"/>
<img class="node" src="somePic1.png" style="z-index:9; opacity:0;"/>
<img class="node" src="somePic2.png" style="z-index:8; opacity:1;"/>
<img class="node" src="somePic3.png" style="z-index:7; opacity:1;"/>
<img class="node" src="somePic4.png" style="z-index:6; opacity:1;"/>
</div>
<script>
var collectNodes = document.getElementById('divId').children;
var y = 0;
for ( var x = 0; x < collectNodes.length; x++ ) {
if ( collectNodes[x].style.opacity !== "" && !y ) {
y = x;
}
}
alert(collectNodes[y].height); // This alerts the string "auto" and not pixel height
</script>