Разделы
Veselov CV | vvShop © 2008 – 2022
Контакты
email:
skype:
Вернуться
» » » Стили CSS для placeholder

Стили CSS для placeholder


input {
padding: 15px;
width: 400px;
border: 1px solid rgba(0,0,0, .6);
border-radius: 5px;
background: #EFEEEE;
font-size: 1.3em;
}
input::-webkit-input-placeholder {
color: rgba(0,5,143,.5);
text-transform: uppercase;
}
input::-moz-placeholder {
color: rgba(0,5,143,.5);
text-transform: uppercase;
}
input:-moz-placeholder { /* Older versions of Firefox */
color: rgba(0,5,143,.5);
text-transform: uppercase;
}
input:-ms-input-placeholder {
color: rgba(0,5,143,.5);
text-transform: uppercase;
}


http://codepen.io/Treehouse/pen/fIesK
Оставить комментарий
Вверх