CSS는 모든 하위 항목에 여백을 추가합니다.
1840 단어 css
.children-mb-1 > * {
margin-bottom: 0.25rem !important;
}
.children-mb-2 > * {
margin-bottom: 0.5rem !important;
}
.children-mb-3 > * {
margin-bottom: 1rem !important;
}
.children-mb-4 > * {
margin-bottom: 1.5rem !important;
}
.children-mb-5 > * {
margin-bottom: 3rem !important;
}
나는 Bootstrap의 값을 채택했다. 왜냐하면 나는 그것을 좋아하기 때문이다.이렇게
Reference
이 문제에 관하여(CSS는 모든 하위 항목에 여백을 추가합니다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/mnishiguchi/css-adding-margin-to-all-children-929텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)