ホームページ > 記事 > ウェブフロントエンド > 位置についてpositioning_html/css_WEB-ITnose
への返信議論(解決策)
絶対配置は配置親に対して相対的なので、相対親さえ決まれば扱いやすい<!DOCTYPE HTML><html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><title></title><style>.box{position:relative; border: solid 1px #ccc; height:300px; width:200px;margin:100px auto;}.sub{ position:absolute;top:-50px;}.sub img{width:200px;height:200px;}.sub span{ position:absolute;right:0;bottom:0; border-radius:20px 20px; border:solid 2px #FF0;color:#FF3; padding:0 5px;}</style></head><body><div class="box"> <div class="sub"> <img src="http://img0.bdstatic.com/img/image/mingxingliminhao.jpg"/> <span>V</span> <!--大V如何定位在最下方,父节点div已经使用了position:absolute。。。--> </div></div></body></html>
これは親ノードが絶対配置を使用するかどうかと関係がありますか?
投稿者は自分自身を大きな V か何かとして位置づけようとしているのでしょうか?大きな V を見つけたい場合は、大きな V に絶対値を追加します