Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例如在(#header div)中,我想放置(#menu div),并且菜单将位于右下角。当将菜单元素放在这里时,它会出现在左侧。我们如何在css中做到这一点
采用:
CSS:
#menu { position:absolute; right: 0; bottom: 0; }
#header应该有position:relative;风格。#menu一个position:absolute;与right:0; bottom:0;
#header
position:relative;
#menu
position:absolute;
right:0; bottom:0;
那就是如果我正确理解了您的问题!:)