Делаем подсветку поля при клике на нём (для удобства пользователя)
Автор статьи SHAKA1
Пример: Подсветка полей ввода (щелкаем в поле Ваше имя: или Комментарий:)
1. Просто добавляем в файл style.css, вашей темы оформления, в самый конец, эти строки:
Код | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| input[type=password]:focus, input[type=text]:focus, textarea:focus {
background: #FFF0F0;
border: 1px dashed #555;
}
/*Для IE*/
textarea {
star: expression(onfocus = (this.getAttribute("type")) ? function() {this.className = 'ie-input-focus'} : null, this.onblur = function() {this.className = '';});
}
input {
star: expression(onfocus = (this.getAttribute("type") && (this.getAttribute("type")=="text" || this.getAttribute("type")=="password")) ? function() {this.className = 'ie-input-focus'} : null, this.onblur = function() {this.className = '';});
}
.ie-input-focus
{
background: #FFF0F0;
border: 1px dashed #555;
}
|
Дата публикации: 10.04.2008 Прочитано: 10805 раз |