首页  >  文章  >  web前端  >  html Style display Property_html/css_WEB-ITnose

html Style display Property_html/css_WEB-ITnose

WBOY
WBOY原创
2016-06-21 08:52:521048浏览

<!DOCTYPE html><html><head><style> #myDIV {    width: 400px;    height: 500px;    background-color: lightblue;}</style></head><body><p>Click the "Try it" button to set the display property of the DIV element to "none":</p><button onclick="myFunction()">Try it</button><div id="myDIV">This is my DIV element.</div><p><b>Note:</b> The element will not take up any space when the display property set to "none".</p><script>function myFunction() {    document.getElementById("myDIV").style.display = "none";}</script></body></html>

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn