做側邊欄的時候,發現這個很好用:
.floor-navigator-wrapper { width: 172px; height: calc(100% - 12px); //使用 calc() box-shadow: 0 3px 8px 0 #dcdcdc; }
使用 calc() 還可以很容易的為一個對象設置一個左右兩邊相等的外邊距:
.banner { position: absolute; /* fallback for browsers which still doesn't support for `calc()` */ left: 5%; width: 90%; /* overwrite, if the browsers support for `calc()`*/ left: calc(40px); width: calc(100% - 80px); border: 1px solid black; box-shadow: 1px 2px; background-color: yellow; padding: 6px; text-align: center; }