这个面试题的具体要求吧:
解决方法:
HTML Markup
<div id="container"> <div id="content">Main Content</div><div id="sidebar">Left Sidebar</div></div>
CSS Code
*{margin: 0;padding: 0;}#container{ background-color:#0ff; overflow:hidden; padding-left:220px; /* 宽度大小等与边栏宽度大小*/}* html #container{ height:1%; /* So IE plays nice */}#content{ width:100%; border-left:220px solid #f00;/* 宽度大小等与边栏宽度大小*/ margin-left:-220px;/* 宽度大小等与边栏宽度大小*/ float:right;}#sidebar{ background-color:#f00; width:220px; float:right; margin-left:-220px;/* 宽度大小等与边栏宽度大小*/}#content,#sidebar { min-height: 200px; height: auto !important; height: 200px;}
新闻热点
疑难解答