Template:ToggleWidth: Difference between revisions

Template page
(Created page with "<html> <head> <style> #myDIV { width: 100%; padding: 50px 0; text-align: center; background-color: lightblue; margin-top: 20px; } </style> </head> <body> <p>Click the "Try it" button to toggle between hiding and showing the DIV element:</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 myFunc...")
 
No edit summary
 
(22 intermediate revisions by the same user not shown)
Line 1: Line 1:
<html>
<html>
<head>
<a id="mylink" href="http://www.google.com">linky</a>
<style>
#myDIV {
  width: 100%;
  padding: 50px 0;
  text-align: center;
  background-color: lightblue;
  margin-top: 20px;
}
</style>
</head>
<body>
 
<p>Click the "Try it" button to toggle between hiding and showing the DIV element:</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() {
  var x = document.getElementById("myDIV");
  if (x.style.display === "none") {
    x.style.display = "block";
  } else {
    x.style.display = "none";
  }
}
</script>
 
</body>
</html>
</html>

Latest revision as of 22:33, 11 July 2023