문서의 이전 판입니다!
display
속성은 레이아웃을 조절하는 가장 중요한 CSS 속성입니다.
display
속성은 한 요소의 표시 여부와 표시 방법을 지정합니다.
모든 HTML 요소들은 타입에 따른 기본 display 값을 가지고 있습니다. 대부분의 요소들의 기본 display 값은 block
또는 inline
입니다.
블록 레벨 요소는 항상 새로운 줄에서 시작하고 사용 가능한 화면의 전체 너비를 차지합니다.
블록 레벨 값을 가지는 요소들
인라인 요소는 새로운 줄에서 시작하지 않고 필요한 만큼만 차지합니다.
인라인 값을 가지는 요소들
display: none
속성은 일반적으로 자바스크립트와 함께 사용되어 요소들을 삭제하고 다시 만들지 않고 숨기고 표시합니다.<script>
요소는 기본 값으로 display: none;
을 가집니다.display: block
속성을 가진 인라인 요소는 내부에 다른 블럭 요소를 가질 수 없습니다.display
속성을 none
으로 설정하여 한 요소를 숨길 수 있습니다. 해당 요소는 숨겨질 것이고, 해당 웹페이지는 마치 해당 요소가 그곳에 없는 것처럼 표시될 것입니다.visibility:hidden;
도 요소를 숨깁니다.Box 1<br>
<img src="img_5terre.jpg" alt="Italy" style="width:100%"> <button onclick="removeElement()">Remove</button>
Box 2<br>
<img src="img_lights.jpg" alt="Lights" style="width:100%"> <button onclick="changeVisibility()">Hide</button>
Box 3<br>
<img src="img_forest.jpg" alt="Forest" style="width:100%"> <button onclick="resetElement()">Reset All</button>
<script>
function removeElement() {
document.getElementById(“imgbox1”).style.display = “none”;
}
function changeVisibility() {
document.getElementById(“imgbox2”).style.visibility = “hidden”;
}
function resetElement() {
document.getElementById(“imgbox1”).style.display = “block”;
document.getElementById(“imgbox2”).style.visibility = “visible”;
}
</script>
</body>
</html>
</code>
<code html>
<!DOCTYPE html>
<html>
<head>
<style>
#panel,
.flip {
font-size: 16px;
padding: 10px;
text-align: center;
background-color: #4CAF50;
color: white;
border: solid 1px #a6d8a8;
margin: auto;
}
#panel {
display: none;
}
</style>
</head>
<body>
<p class=“flip” onclick=“myFunction()”>Click to show panel</p>
<p>This panel contains a div element, which is hidden by default (display: none).</p> <p>It is styled with CSS and we use JavaScript to show it (display: block).</p> <p>How it works: Notice that the p element with class="flip" has an onclick attribute attached to it. When the user clicks on the p element, a function called myFunction() is executed, which changes the style of the div with id="panel" from display:none (hidden) to display:block (visible).</p> <p>You will learn more about JavaScript in our JavaScript Tutorial.</p> </div>
<script> function myFunction() { document.getElementById("panel").style.display = "block"; } </script>
</body>
</html>
</code>
Property | Description |
---|---|
display | 요소가 표시되는 방법을 지정합니다. |
visibility | 요소의 표시 여부를 지정합니다. |