html去掉捲軸的方法:先在html標籤加屬性,程式碼為【<html style="overflow:hidden;">】;然後body中加入相關程式碼即可。
本教學操作環境:windows7系統、html5版,DELL G3電腦。
html去掉捲軸的方法:
1、html標籤加上屬性
<html style="overflow:hidden;">
2、body中加入以下程式碼
<style type="text/css"> html{ overflow-x: hidden; overflow-y: hidden; } </style>
#相關學習推薦:html影片教學
以上是html如何去除捲軸的詳細內容。更多資訊請關注PHP中文網其他相關文章!