0
在這種情況下,我有一個這樣的CSS:CSS高度等於由相關寬度
.w{
width:80%;
display:block;
}
.d{
width:14%;
display:inline-block
}
,這是我的html
<div class="w">
<a href="#" class="d">1</a>
<a href="#" class="d">2</a>
<a href="#" class="d">3</a>
<a href="#" class="d">4</a>
<a href="#" class="d">5</a>
</div>
所以現在的問題是,這有可能使.d
高度等於它的寬度? 我的意思是像這樣的東西:height: 14% OF WIDTH
。 我讀過css的所有單位here,但我找不到任何有用的東西
http://stackoverflow.com/questions/2648733/make-a-div-square-when-there-is-a-dynamically-changing-width基礎的上,percenta – pol