CSS overflow
overflow屬性設定元素內容溢位的處理方式。
語法結構:
[CSS] 純文字檢視 複製程式碼overflow:visible | hidden | scroll | auto
引數解析:
(1).visible:對溢位內容不做處理,內容可能會超出容器,預設值。
(2).hidden:隱藏溢位容器的內容且不出現滾動條。
(3).scroll:隱藏溢位容器的內容,溢位的內容將以捲動滾動條的方式呈現。
(4).auto:當內容沒有溢位容器時不出現滾動條,當內容溢位容器時出現滾動條,按需出現滾動條。auto為body物件和textarea的預設值。
瀏覽器支援:
(1).IE瀏覽器支援此屬性。
(2).谷歌瀏覽器支援此屬性。
(3).火狐瀏覽器支援此屬性。
(4).opera瀏覽器支援此屬性。
(5).safria瀏覽器支援此屬性。
程式碼例項:
[HTML] 純文字檢視 複製程式碼<!doctype html> <html> <head> <meta charset="utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>螞蟻部落</title> <style> #box { width:250px; height:150px; background-color:#ccc; } #ant { width:200px; height:200px; background-color:red; } </style> </head> <body> <div id="box"> <div id="ant"></div> </div> </body> </html>
預設情況下,對溢位內容不做處理,內容可能會超出容器。
[HTML] 純文字檢視 複製程式碼<!doctype html> <html> <head> <meta charset="utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>螞蟻部落</title> <style> #box { width:250px; height:150px; background-color:#ccc; overflow:hidden; } #ant { width:200px; height:200px; background-color:red; } </style> </head> <body> <div id="box"> <div id="ant"></div> </div> </body> </html>
超出父元素的內容部分會被隱藏。
[HTML] 純文字檢視 複製程式碼<!doctype html> <html> <head> <meta charset="utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>螞蟻部落</title> <style> #box { width:250px; height:150px; background-color:#ccc; overflow:scroll; } #ant { width:200px; height:200px; background-color:red; } </style> </head> <body> <div id="box"> <div id="ant"></div> </div> </body> </html>
隱藏溢位容器的內容,溢位的內容將以捲動滾動條的方式呈現;即便是內容沒有溢位,也會留有滾動條位置。
[HTML] 純文字檢視 複製程式碼<!doctype html> <html> <head> <meta charset="utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>螞蟻部落</title> <style> #box { width:250px; height:150px; background-color:#ccc; overflow:auto; } #ant { width:200px; height:200px; background-color:red; } </style> </head> <body> <div id="box"> <div id="ant"></div> </div> </body> </html>
當內容沒有溢位容器時不出現滾動條,當內容溢位容器時出現滾動條,按需出現滾動條。auto為body物件和textarea的預設值。
相關文章
- CSS text-overflowCSS
- CSS overflow-wrapCSS
- CSS3 text-overflowCSSS3
- CSS---text-overflow屬性CSS
- 170420-css-overflow-relatedCSS
- CSS3 overflow-wrapCSSS3
- CSS文字:text-overflow(轉)CSS
- CSS省略號text-overflow超出溢位顯示省略號(需要與overflow配合使用)CSS
- 【學習筆記】CSS深入理解之overflow筆記CSS
- IE CSS Bug系列:相對定位時overflow失效CSS
- CSS學習筆記:溢位文字省略(text-overflow)CSS筆記
- CSS深入理解:overflow:hidden——溢位,坍塌,清除浮動CSS
- 如何不使用 overflow: hidden 實現 overflow: hidden
- 關於CSS中設定overflow屬性的值為hidden的相關理解CSS
- 神奇的overflow屬性
- 相容所有瀏覽器overflow-x:hidden或者overflow-y:hidden瀏覽器
- time wait bucket table overflowAI
- HPUX Error 23 File table overflowUXError
- Understanding Buffer Overflow Bugs
- -webkit-overflow-scrollingWebKit
- overflow的勁爆知識點
- Kernel pwn 基礎教程之 Heap Overflow
- Stack Overflow 與全民程式設計時代程式設計
- overflow-x:auto的使用場景
- 玩轉 Stack Overflow 之提問篇
- overflow:hidden,auto什麼區別
- Windows Kernel Exploitation Notes(一)——HEVD Stack OverflowWindows
- 我是如何在Stack Overflow找到工作的
- [記錄]RuntimeWarning: overflow encountered in scalar subtract
- 每日安全資訊:Stack Overflow 遭遇黑客攻擊黑客
- overflow-x 屬性用法簡單介紹
- table表格中text-overflow失效解決方案
- text-overflow擷取字串簡單介紹字串
- Stack Overflow:最令人討厭的程式語言
- Android中ActionBar及Overflow的顯示Android
- Stack Overflow 最流行的程式語言和標籤
- Index-Organized Tables with Row Overflow Area (230)IndexZed
- 蘋果容器超出內容overflow滑動卡頓問題蘋果