欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

想把一个DIV放到一个大DIV的右下角该怎么办?该大DIV包含两个并列的DIV_html/css_WEB-ITnose

程序员文章站 2024-01-16 18:15:58
...





#xx {position:relative;width:965px;height:186px;overflow:hidden;}
#yidong {position:absolute:right:0px;bottom:0px;width:66px;height:62px;background:url(malu.jpg) no-repeat 0 0;}
让yidong层跑到navmenu的右下角,咋办?上面的不行

回复讨论(解决方案)

position:absolute;right:0px;   

这两个之间是分号,你的事 冒号。


#yidong {position:absolute:right:0px;top:124px;width:66px;height:62px;background:url(malu.jpg) no-repeat 0 0;}

大div设css为position:relative;小div设css为position:absolute;bottom:0; right:0;即可