Главная / Web-программирование на PHP 5.2 / Какой код добавляет рисунок в текстовое поле?

Какой код добавляет рисунок в текстовое поле?

вопрос

Правильный ответ:

<html> <head> <style type="text/css"> INPUT.enter { height: 36рх; width: 200px; padding-left: 34px; } </style> </head> <body> <form action=/cgi-bin/handler.cgi> Логин: <input type = text class = enter style="background: url(login.gif) no-repeat"><br> Пароль: <input type = password class = enter style="background: url(pass.gif) no-repeat"> <p><input type = submit value="Отправить"> </form> </body> </html>
<html> <head> <style type="text/css"> INPUT.enter { height: 36рх; width: 200px; padding-left: 34px; } </style> </head> <body> <form action=/cgi-bin/handler.cgi> Логин: <input type = reset class = enter style="background: url(login.gif) no-repeat"><br> Пароль: <input type = radio class = enter style="background: url(pass.gif) no-repeat"> <p><input type = submit value="Отправить"> </form> </body> </html>
<html> <head> <style type="text/css"> INPUT.myclass { height: 36рх; width: 200px; padding-left: 34px; } </style> </head> <body> <form action=/cgi-bin/handler.cgi> Логин: <input type = text class = myclass style="background: url(login.gif) no-repeat"><br> Пароль: <input type = password class = myclass style="background: url(pass.gif) no-repeat"> </form> </body> </html>
Сложность вопроса
26
Сложность курса: Web-программирование на PHP 5.2
92
Оценить вопрос
Очень сложно
Сложно
Средне
Легко
Очень легко
Комментарии:
Аноним
Если бы не опубликованные ответы - я бы не осилил c этими тестами intuit.
05 фев 2019
Оставить комментарий
Другие ответы на вопросы из темы программирование интуит.