Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

style input field 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
*/
 
PREVIOUS NEXT
Tagged: #style #input #field #css
ADD COMMENT
Topic
Name
2+7 =