标签: html position positioning
答案 0 :(得分:1)
使用绝对邮寄。将你的主div设置为relative,然后将你的内部div设置为绝对,如下所示:
.main-div { position: relative; height: 177px; width: 177px; } .inner-div { position: absolute; right: 0; bottom: 20px; width: 100px; height: 20px; }