Heim  >  Artikel  >  Web-Frontend  >  html Style display Property_html/css_WEB-ITnose

html Style display Property_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-21 08:52:521088Durchsuche

<!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>

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn