嗨,我如何让 div 'one' 和 div 'three' 自动调整到屏幕侧,同时在 css 中保持 div 'two' 宽度不变?所有三个 div 应该在同一行
我的 HTML 是这样的;
<html>
<header<title></title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="x">
<div id="one"></div>
<div id="two"></div>
<div id="three"></div>
</div><!-- close div 'x' -->
</body>
</html>
到目前为止完成的CSS如下;
#x {height:34px; border:1px solid gray;}
#one {height:30px; border:1px solid red;; width:auto; float:left;}
#two {height:30px; border:1px solid green; width:660px; float:left;}
#thr {height:30px; border:1px solid blue; width:auto; float:left;}
任何建议都非常感谢。感谢您的关注