hanker

CSS - textbox css 적용해서 꾸미기 본문

HTML/CSS

CSS - textbox css 적용해서 꾸미기

hanker 2020. 9. 1. 10:49
반응형

참고 : https://www.youtube.com/watch?v=omJfspwjnZk

input[type=text]{
	width:100%;
	border:2px solid #aaa;
	border-radius:4px;
	margin: 8px 0;
	outline: none;
	padding:8px;
	box-sizing: border-box;
	transition:.3s;
}

input[type=text]:focus{
	border-color:dodgerBlue;
	box-shadow:0 0 8px 0 dodgetBlue;
}

 css 적용 시 

반응형

'HTML > CSS' 카테고리의 다른 글

CSS - 요소 중앙 정렬하는 방법 (수직 / 수평 정렬)  (0) 2024.11.18
CSS - 마우스 커서(cursor) 변경  (0) 2021.02.01