Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- top
- 트랜잭션
- docker
- 자바
- oracle
- PostgreSQL
- IntelliJ
- SQL
- mssql
- Linux
- 리눅스
- analytics4
- rsync
- network
- 티스토리챌린지
- 명령어
- mysql
- MongoDB
- DBMS
- git
- spring
- MariaDB
- Python
- group by
- java
- 차이점
- Javascript
- 오블완
- API
- JPA
Archives
- Today
- Total
hanker
CSS - textbox css 적용해서 꾸미기 본문
반응형
참고 : 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 |