• Home
  • Save code
  • Refresh
  • theme1 theme2 dark3
  • Embed
  • DMCA

Add Class To Body Javascript

<html lang="en">
  <head>
    <style>
     .new-class{
      background-color: red;
     }
    </style>
  </head>
  <body>
   <script>
    document.body.classList.add('new-class');
   </script>
  </body>
</html>
 
 

You may like these posts :

    Write Your Comment