
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
영화 코멘트 웹에서 기록하기랑 닫기 버튼 만들고 그 버튼들에 style을 왜 margin-right로 해주는지 이해가 안 갑니다!!!
헤드 부분입니다
.mybutton {
margin-top: 20px;
display: flex;
flex-direction: low;
justify-content: center;
align-items: center;
}
.mybutton > button {
margin-right: 20px;
}
바디 부분입니다.
<div class="mybutton">
<button type="button" class="btn btn-dark">기록하기</button>
<button type="button" class="btn btn-outline-dark">닫기</button>
</div>
