如何div
在网站上的同一“行”中对齐两个 s?
我一直在处理这个页面,我试图让一个菜单浮动到网站的左侧,然后将内容浮动到网站的一侧。
我曾尝试将其用作div
的 CSS:
.menu
{
width:25%;
height:auto;
margin-bottom:2px;
float:right;
position:fixed;
}
.content
{
width:70%;
height:50%;
margin-bottom:2px;
padding: 25px;
float:right;
}
该页面不是并排显示它们并且是浮动的,而是大多数网站的显示方式,例如:http ://www.exorithm.com/ ,它们有一个侧边栏和一个内容区域。任何人都可以帮忙吗?
我所有的代码: http: //pastebin.com/KqYkrweE