-
React Error : autoprefixer: start/end value has mixed support, consider using flex-start/end insteadDEV/react 2024. 4. 18. 11:16
// start -> flex-start로 변경 하라고 한다. autoprefixer: start value has mixed support, consider using flex-start instead // 본인 css의 "justify-content: start" 와 "align-items: start" 를 찾아서 변경해주자 // "justify-content: start" 를 하단 css로 변경 justify-content: flex-start // "align-items: start" 를 하단 css로 변경 align-items: flex-start
// end -> flex-end 변경 하라고 한다. autoprefixer: end value has mixed support, consider using flex-end instead // 본인 css의 "justify-content: end" 와 "align-items: end" 를 찾아서 변경해주자 // "justify-content: end" 를 하단 css로 변경 justify-content: flex-end // "align-items: end" 를 하단 css로 변경 align-items: flex-end
'DEV > react' 카테고리의 다른 글
React redux (toolkit) 간단 사용법 (0) 2025.01.22 React Three Fiber (react-three) 메모장 1 (4) 2024.10.07 React 전역 변수를 사용하자 (부모-자식 컴포넌트 접근, Context) (0) 2024.02.21 React App build 명령어 (0) 2024.02.20 React Component 가변적으로 생성/추가하기, 제거하기 (Alert 가변 생성 예시 포함) (0) 2024.02.19