Advertisement
niske

Zadatak sa 4 diva

Mar 23rd, 2023
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Coloring Divs</title>
  5. <script>
  6. function changeColor(color) {
  7. document.getElementById("fourth-div").style.backgroundColor = color;
  8. }
  9. </script>
  10. <style>
  11. .container {
  12. display: flex;
  13. flex-wrap: wrap;
  14. }
  15.  
  16. .color-option {
  17. width: 100px;
  18. height: 100px;
  19. margin: 10px;
  20. border: 1px solid black;
  21. cursor: pointer;
  22. }
  23.  
  24. #fourth-div {
  25. width: 300px;
  26. height: 300px;
  27. margin-top: 20px;
  28. border: 1px solid black;
  29. background-color: white;
  30. }
  31. </style>
  32. </head>
  33. <body>
  34. <div class="container">
  35. <div class="color-option" style="background-color: red" onclick="changeColor('red')"></div>
  36. <div class="color-option" style="background-color: green" onclick="changeColor('green')"></div>
  37. <div class="color-option" style="background-color: blue" onclick="changeColor('blue')"></div>
  38. <div id="fourth-div"></div>
  39. </div>
  40. </body>
  41. </html>
  42.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement