Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <style> .Class1 { width: 150px; height: 50px; background-color: #1c87c9; color: #e6ebef; font-size: 25px; padding: 5px; } .Class2 { width: 300px; height: 100px; background-color: #8ebf42; text-align: center; font-size: 25px; color: #eee; margin-bottom: 10px; } </style> </head> <body> <p>Cliquez sur le bouton pour basculer entre deux catégorie.</p> <button onclick="myFunction()">Click</button> <p><strong>Note:</strong> La propriété classList n’est pas supporté en Internet Explorer 9 et versions antérieures.</p> <div id="myDiv" class="Class1"> Je suis un élément Div. </div> <script> function myFunction() { document.getElementById("myDiv").classList.toggle("Class2"); } </script> </body> </html>