Template:ToggleWidth

Template page
Revision as of 18:52, 23 June 2023 by Timothy (talk | contribs) (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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Click the "Try it" button to toggle between hiding and showing the DIV element:

This is my DIV element.

Note: The element will not take up any space when the display property set to "none".