Guest User

Untitled

a guest
May 26th, 2021
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>css</title>
  6.  
  7. </head>
  8. <body>
  9. <ul id="elem">
  10. <li>text</li>
  11. <li>text</li>
  12. <li>text</li>
  13. <li>text</li>
  14. <li>text</li>
  15. </ul>
  16.  
  17. <script>
  18. let lis = document.querySelectorAll('li');
  19. let css = {
  20. color: 'red'
  21. }
  22. Object.assign(style, css);
  23. </script>
  24. </body>
  25. </html>
  26.  
Advertisement
Add Comment
Please, Sign In to add comment