position 속성은 요소에 사용되는 위치 지정 방법 유형(정적, 상대, 절대, 고정 또는 고정)을 지정합니다.
아래 예시에서는 높이가 백분율로 지정되지 않았으며 jQuery가 필요하지 않습니다.
.mainbody{ position: absolute;//here we are setting the position of an element as absolute top: 30px; /* here we are defining Header Height to 30 px */ bottom: 10px; /*here we are defining Footer Height to 10 px */ width: 100%;// here we are setting the width to 100% }
위 내용은 CSS 및 HTML을 사용하여 기본 콘텐츠 div 채우기 화면 높이를 만드는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!