본문으로 바로가기

!important in CSS

category Studies/RubyonRails 2022. 1. 17. 00:29

css 로 margin을 줘야 할 때는 !important를 사용하도록 한다.

 

.center {
    height: 10em;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top:30px !important;
}

class가 겹쳐있는 경우 이렇게 해줘야 한다.