Last Update 2007/01/16
TOP - CSS1(Cascading Style Sheets, level 1) - padding-right
要素の右端のパディングを指定します。
デフォルトは0(数値)です。
パーセント値も指定可能です。
デフォルトは0(数値)です。
パーセント値も指定可能です。
(例)
<HTML>
<HEAD>
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<TITLE>テスト</TITLE>
<STYLE type="text/css">
<!--
TD {height: 100px}
P {font: 12pt monospace}
EM.test1 {background-color: mediumspringgreen; padding-right: 100px}
EM.test2 {background-color: mediumspringgreen; padding-right: 20%}
-->
</STYLE>
</HEAD>
<BODY>
<P>着色部が<EM class="test1">パディング</EM>を含む要素部分</P>
<P>着色部が<EM class="test2">パディング</EM>を含む要素部分</P>
</BODY>
</HTML>