首頁  >  文章  >  web前端  >  CSS中overflow-y: visible;不起作用的解決方法

CSS中overflow-y: visible;不起作用的解決方法

不言
不言原創
2018-09-13 17:55:114227瀏覽

這篇文章帶給大家的內容是關於CSS中overflow-y: visible;不起作用的解決方法,有一定的參考價值,有需要的朋友可以參考一下,希望對你有所幫助。

場景

最近要做的一個需求是行動端的h5頁面,要求有一排可選擇的卡片, 超出容器部分可以左右滑動,同時每張卡片左上角要有一個刪除按鈕。如下圖:

CSS中overflow-y: visible;不起作用的解決方法

心想:so easy, 在父容器上加一個max-width: 200px; white-space: nowrap; overflow- x: auto;不就搞定了。 Demo如下:

<div>
  <div>
    <div></div>
  </div>
  <div>
    <div></div>
  </div>
  <div>
    <div></div>
  </div>
</div>

.container {
  max-width: 500px;
  overflow-x: auto;
  white-space: nowrap;
}

.son {
  display: inline-block;
  width: 200px;
  height: 200px;
  background-color: lightblue;
  position: relative;
  margin-right: 20px;
}

.delete_btn {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: red;
  transform: translateX(-50%) translateY(-50%);
}

原本以為一切順利,結果得到的結果如圖:

CSS中overflow-y: visible;不起作用的解決方法

看第矩形左上角的紅色方塊,原本為20 * 20的紅色方塊有一部分被隱藏了。我想應該是overflow影響的,所以想透過overflow-y: visible;來解決,結果是不行的。細心的朋友應該記得overflow的預設值就是visible。那麼原因是什麼呢?

Why

找了好久,大致了解到是如下原因

The computed values of ‘overflow-x’ and ‘overflow-y’ are the same as their specified values, except that some combinations with ‘visible’ are not possible: if one is specified as ‘visible’ and the other is ‘scroll’ or ‘auto’, then ‘visible’ is set to ‘auto’. The computed value of ‘overflow’ is equal to the computed value of ‘overflow-x’ if ‘overflow-y’ is the same; otherwise it is the pair of computed values of ‘overflow-x’ and ‘overflow-y’.

#大致意思是,當overflow-x為scroll或auto時,overflow-y被設定為auto,反之亦然。這就很尷尬了,那要怎麼解決這個問題。

ps: 上面那段話說是來自於w3c的文檔,但是我找了半天沒找到原文,麻煩找到了的小伙伴留個鏈接~ [手動狗頭]

How

終究還是想讓左上角的紅色方塊顯示完整的,那麼解決方案呢,我這裡採用的是在container上添加以下樣式

padding-top: 20px;
margin-top: -20px;

原理其實挺簡單的,加了padding-top: 20px;後,絕對定位的紅色方塊就有空間顯示了,不會超出容器體積,然後通過margin-top: -20px;抵消位置的變化.如圖

CSS中overflow-y: visible;不起作用的解決方法

ps: 第一個紅色方塊左邊被遮住的部分同樣的思路解決,即透過padding-left和margin-left來處理。

相關建議:

iframe雙重滾動條 解決方式CSS3 overflow-y 屬性_html/css_WEB-ITnose

## HTML標籤的overflow處理用應_HTML/Xhtml_網頁製作

#

以上是CSS中overflow-y: visible;不起作用的解決方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn