“Поле ввода стиля CSS” Ответ

Как написать CSS для текста ввода типа

/* For Example, If we want to change css of "text" type
from <input> we do this:*/

input[type=text] {
    /* Your Code Here */ 
}
David Gomari

Поле ввода стиля CSS

/* Simply select the input field you want to 
   style using the selector below */

input[type=/* "Type" */] {
  
  	/* Your style here */
  
}

/* Example */

input[type="text"] {
	width: 45vw;
  	height: 30px;
  	padding: 3px;
  	font-size: 1.8rem;
  	border: 1px solid gray;
}

/* Read more about CSS selector's here 
   https://www.w3schools.com/cssref/css_selectors.asp
*/
Odd Ocelot

CSS устанавливает стили для ввода текста

input[type="text"] {  font-size: 0.9em;  padding-top: 0.35rem;}
Clean Cassowary

Ответы похожие на “Поле ввода стиля CSS”

Вопросы похожие на “Поле ввода стиля CSS”

Больше похожих ответов на “Поле ввода стиля CSS” по CSS

Смотреть популярные ответы по языку

Смотреть другие языки программирования