我想在位于中心的其他 div 的右侧添加一个 div。如图所示:
到目前为止,我有这个 html:
<div id= "top-menu-wrapper">
<div id="top-menu">
</div>
<div id="social">
</div>
</div>
的CSS:
#header #top-menu {
display : inline-block;
width : 764px;
height : 55px;
margin : auto;
}
#header #social {
display : inline-block;
width : 100px;
height : 55px;
margin-left : 25px;
}
#header #top-menu-wrapper {
display : block;
text-align : center;
margin-bottom : 25px;
}