Изменение положения с помощью onmouseover

#javascript Вопрос: <!DOCTYPE html> <html> <head> <title>Button Homework</title> <script> function first() { document.getElementById('type1').style.left= "100px"; } function second() { document.getElementById('type1').style.position = 'absolute'; } </script> </head> <body> <h1>Special Button</h1> <input id =…

Продолжить чтениеИзменение положения с помощью onmouseover