CSS Div定位

我正在尝试建立最小宽度为1024px的两列标题.当查看器的屏幕小于1024px时,我希望该窗口在网站的右侧切开,但是我一直在得到奇怪的结果,例如左侧移入.谢谢.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Dynamic Drive: CSS Liquid Layout #2.1- (Fixed-Fluid)</title>
<style type="text/css">
body{
    margin:0;
    padding:0;
    background-image:url(images/bground.jpg);
    background-repeat:repeat-x;
}
#contentwrapper{
float: left;
width: 100%;
min-width:1024px;
background-image:url(images/header_middle.jpg);
    background-repeat:no-repeat;
    background-position:center top;
}

#contentcolumn{
margin-left: 351px; /*Set left margin to LeftColumnWidth*/
background-image:url(images/header_right.png);
    background-repeat:no-repeat;
    height:318px;
    background-position:right;
}

#leftcolumn{
float: left;
width: 351px; /*Width of left column*/
margin-left: -100%;
background-image:url(images/header_left.png);
    background-repeat:no-repeat;
height:300px;
}


</style>

</head>
<body>
  <div id="contentwrapper">
<div id="contentcolumn"></div>
</div>

<div id="leftcolumn">

</div>

</body>
</html>
最佳答案
尝试这个

的CSS

div.wrapper {
    width: 100%;
    min-width: 1024px;
}
div.one {
    width: 300px;
    float: left;
    height: 300px;
}
div.two {
    height: 300px;
}

的HTML

<div class="wrapper">
    <div class="one">The left column</div>
    <div class="two">The right column</div>
</div>​

现场例子

http://jsfiddle.net/HKrbn/

相关文章

Css常用的排序方式权重分配 排序方式: 1、按类型&#160;...
原文:https://www.cnblogs.com/wenruo/p/9732704.html 先上...
css属性:word-wrap:break-word; 与 word-break:break-all 的...
https://destiny001.gitee.io/color/
&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML...
css之background的cover和contain的缩放背景图 对于这两个属...