为什么我在下面写的位置不对啊
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>盒模型和层模型</title> <style type="text/css"> div {border:0px blue solid;} a:hover{color: red} .houmian{ width:100px; height:100px; margin-bottom: 1000px; float:right; left: 50px; } p{text-indent:2em;} .tupian{ width:300px; height:450px; position:relative; } .wenzi{ position:absolute; width:250%; top:0%; left:0%; color:black; font-weight:bold; } </style> </head> <body> <h1 style="text-align:center">天注定</h1> <div class="tupian"> <img src="https://img1.doubanio.com/view/photo/raw/public/p1975745189.jpg" > <div class="wenzi"> <p><a href="https://movie.douban.com/review/8288703/" >《天注定》</a>采取了另外一种结构策略,它更像是一种现象学式的还原而非戏剧学式地取巧,它不再试图在作品中去把握世界或者分析它的内部联系,而是直接把这种失败呈现出来,它更像是一种尚未完成的综合,其张力是由作品的中心向作品的外围和世界扩散的,影片中相关人物的擦肩而过所体现的正是这种扩散。</p></div> </div> <div class="houmian"> <p>这位置怎么调的那么费劲啊!为什么这个div是在.wenzi的div下面,还会被图片挡住?</p> </div> </body> </html>
为什么houmian的位置不在图片右下方显示呢