728x90
You can't use float inside flex container and the reason is that float property does not apply to flex-level boxes .
So if you want to position child element to right of parent element you can use margin-left: auto but now child element will also push other div to the right
결론: display:flex를 적용했을 때는, float:right 대신 margin-left:auto를 쓰자
Reference
반응형