본문 바로가기

'.' Programs/CSS

Padding

Padding

개요 : 이 속성은 요소에 위쪽 , 오른쪽, 아래쪽, 왼쪽 패딩을 한꺼번에 지정한다.

정의

padding

설명

<길이> | <백분율> | auto | inherit

기본값

auto

적용대상

위치된 요소

상속

안됨

백분율

용기 블럭의 크기를 참조

미디어

visual

설명

<길이>

길이를 지정한다.

<백분율>

백분율(%) 값을 지정한다. 부모 요소를 기준으로 계산된다.

auto

자동으로 계산된 값을 지정한다.

inherit

부모 요소의 값을 상속하도록 지정한다.


View Source :

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
<!--
.table1 {
padding: 15px;
}
.table2 {
padding: 10px 20px;
}
.table3 {
padding: 15px 5px 10px 15px;;
}
body {
font-size: 12px;
}

-->
</style>
<body>
<p>padding:15px; (top, right, bottom, left 모두 15px) </p>
<table width="150" height="50" border="0" cellpadding="0" cellspacing="0" class="table1">
<tr>
<td bgcolor="#00CC00">도레미파솔라시도레미파솔라시도레미파솔라시도레미파솔라시</td>
</tr>
</table>
<p>padding: 10px 20px; (마주 보는 것끼리, 즉 top과 bottom은 10px, right와 left는 20px) </p>
<table width="150" height="50" border="0" cellpadding="0" cellspacing="0" class="table2">
<tr>
<td bgcolor="#00CC00">도레미파솔라시도레미파솔라시도레미파솔라시도레미파솔라시</td>
</tr>
</table>
<p>padding: 15px 5px 10px 15px; (top, right, bottom, left 순서대로) </p>
<table width="150" height="50" border="0" cellpadding="0" cellspacing="0" class="table3">
<tr>
<td bgcolor="#00CC00">도레미파솔라시도레미파솔라시도레미파솔라시도레미파솔라시</td>
</tr>
</table>
</body>

Result :





''.' Programs > CSS' 카테고리의 다른 글

Padding - Bottom  (0) 2012.03.20
Padding-Left  (0) 2012.03.20
Border-Top-Style  (0) 2012.03.20
Border-Right-Style  (0) 2012.03.20
Border-Bottom-Style  (0) 2012.03.20