在html5中,overflow的意思是溢出,該屬性規定如何處理不符合元素框的內容,語法「物件.style.overflow=visible|hidden|scroll|auto」。
本教學操作環境:windows7系統、CSS3&&HTML5版、Dell G3電腦。
意思:HTML溢位;
overflow 屬性規定如何處理如何處理不符合元素框的內容。
語法:
Object.style.overflow=visible|hidden|scroll|auto
屬性值:
#實例
本例使用overflow 來顯示溢出元素框的內容:
<html> <head> <style type="text/css"> div { border: thin solid green; width: 100px; height: 100px; } </style> <script type="text/javascript"> function hideOverflow() { document.getElementById("div1").style.overflow = "hidden"; } </script> </head> <body> <div id="div1"> This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. </div> <br /> <input type="button" onclick="hideOverflow()" value="Hide overflow" /> </body> </html>
效果:
推薦學習:html影片教學
以上是html5中overflow是什麼意思的詳細內容。更多資訊請關注PHP中文網其他相關文章!