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
- spring
- error
- github
- Kibana
- Javascript
- zset
- cursorai
- Linux
- analytics4
- DBMS
- 티스토리챌린지
- iBatis
- 자바
- mysql
- java
- IntelliJ
- Python
- 명령어
- codeium
- SQL
- pandas
- PostgreSQL
- 리눅스
- MariaDB
- oracle
- mssql
- git
- 쉘스크립트
- docker
- 오블완
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 - <a> 태그 밑 줄 없애기 (text-decoration) (0) | 2025.04.03 |
---|---|
CSS - 요소 중앙 정렬하는 방법 (수직 / 수평 정렬) (0) | 2024.11.18 |
CSS - 마우스 커서(cursor) 변경 (0) | 2021.02.01 |