Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Absolute
- AGI
- ai
- AI agents
- AI engineer
- AI researcher
- ajax
- algorithm
- Algorithms
- aliases
- Array 객체
- ASI
- bayes' theorem
- Bit
- Blur
- BOM
- bootstrap
- canva
- challenges
- ChatGPT
Archives
- Today
- In Total
A Joyful AI Research Journey🌳😊
230208 CSS 포커스 이용해서 input 눌렀을 때 border에 효과 주기 본문
💻Bootcamp Self-Study Revision✨/HTML5, CSS, Bootstrap, JSP
230208 CSS 포커스 이용해서 input 눌렀을 때 border에 효과 주기
yjyuwisely 2023. 3. 30. 00:17230208
포커스 이용해서 input text 눌렀을 때 border 효과 주기
/*input 클릭하면 효과 있다.*/
input:focus{outline:none;/*input 박스를 클릭 했을떄 나오는 테두리 색상 없애기*/
border:solid 2px #CCCCFF; /*box-shadow: 0 0 5px #d6a8e9;*//*그림자 효과*/};
!important 쓰니까 실행됐다.
참고: https://zxchsr.tistory.com/301
select:focus{
border:solid 2px #CCCCFF !important; box-shadow: 0 0 15px #ECEEFF;}
참고: https://stackoverflow.com/questions/43820420/change-the-border-color-of-the-select-input-for-focus
728x90
반응형
'💻Bootcamp Self-Study Revision✨ > HTML5, CSS, Bootstrap, JSP' 카테고리의 다른 글
CSS: 반응형 웹 텍스트 만들기 word-break: break-word (0) | 2023.04.07 |
---|---|
CSS: 배경 투명도 Opacity 조정할 때 텍스트는 그대로 유지하는 법: rgba 사용하기 (0) | 2023.04.06 |
230210 CSS 마우스 올렸을 때 이미지 확대하기: blog-slider (0) | 2023.03.29 |
230213 CSS 테이블 만들기: display: table, display: table-cell (0) | 2023.03.29 |
Comments