개인적인 정리

backgroundcolor 없애기 본문

HTML & CSS

backgroundcolor 없애기

yeon.Biju 2019. 5. 21. 13:39

 

red class 에 background color 가 들어가 있을 때 아래와 같이 backgroundcolor  에서 색상을 제거해준다.

 

c_red, .red {
    color: #e13d00;
    background-color: transparent !important;
}

Comments