我遇到的问题是在我的两列布局中,第一列有动态宽度,第二列有固定。我的目标是让第一列填充剩下的空间而第二列不填充?想法?
代码:
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>2 columns</title>
<style type="text/css">
body {
margin:0;
padding:0;
background: #fff;
}
#wrap {
float: left;
width: 100%;
}
#content {
margin-right: 300px;
}
#info {
float: left;
width: 300px;
margin-left: -300px;
}
</style>
</head>
<body>
<div id="wrap">
<div id="content">Content goes here</div>
</div>
<div id="info">
<div>Info goes here</div>
</div>
</body>
</html>