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
- 국비지원
- 부트캠프
- sqld 55회
- css 꿀팁
- Filter
- 프론트엔드개발자
- TypeScript
- 리액트오류
- Where
- 프론트엔드부트캠프후기
- react hook
- Firebase
- 부트캠프 취업후기
- git
- reduce
- 국비지원취업
- github
- sqld 자격증 시험
- 퍼블리셔 이직후기
- promise 비동기처리
- 성능개선
- foreach
- firebase rules
- 패스트캠퍼스
- map
- 패스트캠퍼스 부트캠프
- 야놀자x패스트캠퍼스
- 야놀자 fe 1기
- js CRUD
- 2024 sqld
Archives
- Today
- Total
목록css 꿀팁 (2)
Tech is created to fix problem

1. 이미지에 호버했는데 이미지가 바뀌는 경우 2. 입체적인 호버효과 transform-style: preserve-3d;
CSS 꿀팁
2023. 7. 21. 14:34

1. border에 gradient 넣기 구글링한 결과 border에 그라데이션을 설정하는 방법은 border-image, border-image-slice 속성을 이용해서 그라데이션을 넣을 수 있다. ex) .profileImg1 { position: relative; width: 70px; height: 70px; margin: 10px; background-color: #fff; border: 3px solid transparent; border-radius: 50%; border-image: linear-gradient(to right, red 0%, orange 100%); border-image-slice: 1; } 하지만 위 코드를 보면 border-radius에 linear-gradient..
CSS 꿀팁
2023. 7. 21. 14:31