CSS 속성 해제 방법

2022. 1. 5. 11:57Study/Publishing

반응형 웹 구축 시 지정된 CSS 속성을 해재해야 하는 상황이 발생한다. 이때 해당 속성에 맞는 해재 방법으로 스타일을 주면 된다.

 

 

고정->유동

.auto{width: auto;}

 

 

float

.float{ float : none }

 

 

position

.position{ position:static; left:0; top:0; }
.position{ position:relative; left:0; top:0; /* 권장 */ }

 

 

border

.border{ border:0 none; }

 

 

background

.background{ background:none; }

 

 

font

.font{ font-style:normal; font-weight:normal;}

 

 

margin/padding

.mp{margin:0; padding:0;}

 

 

clear:both

.clear{clear:none;}

 

 

 

 

 

 

'Study > Publishing' 카테고리의 다른 글

CSS3 filter  (0) 2022.01.07
CSS3 mix-blend-mode  (0) 2022.01.07
반응형웹 - 미디어쿼리  (0) 2022.01.05
스크롤바 숨기기  (0) 2022.01.04
div 팝업 시 body scroll 비활성화  (0) 2022.01.03