본문 바로가기
css

css position : 반응형에서 absolute 초기화

by 바나냥 2020. 10. 7.

요소에 position: absolute; top, left 값을 줬다가 반응형에서 빼야 할 경우

position: static 사용

 

static
요소를 일반적인 문서 흐름에 따라 배치합니다. 
top, right, bottom, left, z-index 속성이 아무런 영향도 주지 않습니다. 기본값입니다.

 

 

 

stackoverflow.com/questions/19351151/remove-positionabsolute-attribute-by-adding-css

 

Remove position:absolute attribute by adding css

I have a html element with id="#item" I have a UI event that programaticaly alters the css for "#item" by adding the class ".new" to "#item". Initially I want "#item" to have "position:absolute". H...

stackoverflow.com

 

developer.mozilla.org/ko/docs/Web/CSS/position

 

position

CSS position 속성은 문서 상에 요소를 배치하는 방법을 지정합니다. top, right, bottom, left 속성이 요소를 배치할 최종 위치를 결정합니다.

developer.mozilla.org

 

'css' 카테고리의 다른 글

[css] min() / max()  (0) 2020.11.04
image-set  (0) 2020.10.27
auto와 inherit의 차이 ?  (0) 2020.10.06
css animation 마지막 상태 유지, 반복 횟수  (0) 2020.09.29
css animation 지원하지 않는 브라우저에서 보이게 하기  (0) 2020.09.15

댓글