bottomプロパティは、ボックスを配置する場合の、下からの配置位置(距離)を指定する際に使用します。
下からの配置位置(距離)とは、基準位置の下l端から配置するボックスの下端までの距離を指します。
bottomプロパティで指定するのは基準位置からの距離のみです。
実際の表示位置の指定には、positionプロパティを併用して、配置方法(基準位置)を設定する必要があります。
尚、bottomプロパティの値は、positionプロパティの値がstatic以外のときに有効となります。
div.sample {width:200px; height:150px; position:relative;}
span.sample1 {position:absolute; top:10px; left:10px;}
span.sample2 {position:absolute; bottom:10px; right:10px;}
<html>
<head>
<link rel=”stylesheet” href=”sample.css”
type=”text/css”>
</head>
<body>
<div class=”sample”>
<img src=”https://www.htmq.com/wp-content/themes/htmq/htmq-images/kaeru.gif” alt=”イメージ” width=”200″ height=”150″>
<span class=”sample1″>雨だから</span>
<span class=”sample2″>かえる</span>
</div>
</body>
</html>