위치:정적, 속성은 기본값인 정적 요소의 위치를 설정합니다.
예시
top, bottom, left, right 속성은 정적으로 배치된 요소에 영향을 미치지 않습니다. CSS position:static;을 구현하기 위해 다음 코드를 실행할 수 있습니다. 재산
<!DOCTYPE html> <html> <head> <style> div.static { position: static; border: 3px solid blue; } </style> </head> <body> <h1>Positioning Element</h1> <div class="static"> div element with position: static; </div> </body> </html>
출력