位置指定のbottom/right
(Test1)absolute指定(position:absolute;bottom:0;right:0)
(Test2)absolute指定(position:absolute;bottom:50;right:30)
(Test3)absolute指定(position:absolute;bottom:0;right:0)
(Test4)absolute指定(position:absolute;bottom:50;right:30)
HTML Source......................................................................>>>
<body>
<p style="position:absolute;bottom:0;right:0;border:thin solid red">
(Test1)absolute指定(position:absolute;bottom:0;right:0)</p>
<p style="position:absolute;bottom:50;right:30;border:thin solid red">
(Test2)absolute指定(position:absolute;bottom:50;right:30)</p>
<div style="position:absolute;bottom:80;right:30;height:150;border:thin solid green">
(test3,4のコンテナ)absolute指定(position:absolute;bottom:80;right:30)
<p style="position:absolute;bottom:0;right:0;border:thin solid red">
(Test3)absolute指定(position:absolute;bottom:0;right:0)</p>
<p style="position:absolute;bottom:50;right:30;border:thin solid red">
(Test4)absolute指定(position:absolute;bottom:50;right:30)</p>
</div>
end(01/10/13)