테스트 사이트 - 개발 중인 베타 버전입니다

CSS Height and Width

· 8년 전 · 1664

CSS Height and Width

 

Setting height and width

 

height 및 width 속성은 요소의 높이 및 너비를 설정하는 데 사용됩니다.

 

높이와 너비를 자동으로 설정할 수 있습니다 (기본값 : 브라우저가 높이와 너비를 계산한다는 의미). 또는 px, cm 등의 길이 값 또는 포함 된 블록의 백분율 (%)로 지정합니다. .

 

Example

div {

    height: 200px;

    width: 50%;

    background-color: powderblue;

}

 


 

 

<!DOCTYPE html>

<html>

<head>

<style>

div {

    height: 200px;

    width: 50%;

    background-color: powderblue;

}

</style>

</head>

<body>

 

<h2>Set the height and width of an element</h2>

 

<p>This div element has a height of 200px and a width of 50%:</p>

 

<div>This element has a height of 100 pixels and a width of 500 pixels.</div>

 

</body>

</html>


댓글 작성

댓글을 작성하시려면 로그인이 필요합니다.

로그인하기

게시글 목록

번호 제목
3056
3055
3054
3051
3050
3049
3046
3045
3044
3043
3042
3041
3040
3039
3038
3034
3033
3032
3027
3026
3025
3024
3023
3022
3021
3020
3019
3018
3017
3016