(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 |
||
Line 13: | Line 13: | ||
<body> | <body> | ||
< | <button onclick="myFunction()">Try it</button> | ||
<script> | <script> | ||
function myFunction() { | function myFunction() { | ||
var x = document. | var x = document.getElementByClassName("ts-inner"); | ||
if (x.style. | if (x.style.max-width=== "none") { | ||
x.style. | x.style.max-width= "115em"; | ||
} else { | } else { | ||
x. | x.max-width = "none"; | ||
} | } | ||
} | } |
Revision as of 17:56, 23 June 2023