0
Подскажыте. Почему прямоугольник не меняет цвет.
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>прямоугольник</title> <script> var input = document.querySelector('input') var footer = document.querySelector('footer') input.addEventListener('change', function(){ footer.style.setProperty('--footer-color', input.value) }) </script> <style> :root { --footer-color: #ff4545; } footer { width: 100%; height: 50px; margin-top: 20px; background-color: var(--footer-color) } </style> </head> <body style="padding
1 Respuesta
+ 3
Можно пожалуйста полный код?