HomeAboutMeBlogGuest
© 2025 Sejin Cha. All rights reserved.
Built with Next.js, deployed on Vercel
  1. 특정 요소만 오른쪽 정렬 하는 방법
    1. notion image
      .flex-container { display: flex; } .flex-item { flex: none; /* flex: 0 0 auto */ } .flex-item-right { margin-left: auto; }
      • https://d2.naver.com/helloworld/8540176