#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;}
Let the yidong layer run to the lower right corner of navmenu, what should I do? The above does not work
Reply to the discussion (solution)
position:absolute;right:0px;
Copy after login
There is a semicolon between these two, your business is a colon.
#yidong {position:absolute:right:0px;top:124px;width:66px;height:62px;background:url(malu.jpg) no-repeat 0 0;}
Copy after login
Set the css of the large div to position:relative; set the css of the small div to position:absolute;bottom:0;right:0; that's it
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn