찾다

 >  Q&A  >  본문

본문의 div 너비와 높이가 100%로 설정되어 div가 표시되지 않습니다.

<!Doctype html>
<html>
	<head>
		<meta charset="UTF-8">
		<title>test</title>
		<style>
			*{margin:0;padding:0;}
			body{background: green;}
			#main{width:100%;
				height:100%;
				background: yellow;
				margin-top:50px;
				}
		</style>
	</head>
	
	<body>
		<div id="main">
		</div>
	</body>

</html>

헤더 선언 <!Doctype html>을 추가한 후 div가 표시되지 않습니다. 이를 제거한 후에는 정상적으로 표시됩니다. IE11 및 크롬 브라우저에서 테스트할 때에도 동일한 현상이 나타납니다. 무엇이 문제입니까?

朝花夕逝朝花夕逝2556일 전1156

모든 응답(1)나는 대답할 것이다

  • PHP中文网

    PHP中文网2017-12-01 21:19:07

    메인에 테두리를 추가하시면 보실 수 있습니다

    회신하다
    0
  • 취소회신하다