你好如何让div'one'和div'3'自动调整到屏幕边,同时在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;}
任何建议都非常感谢。谢谢你看
答案 0 :(得分:2)
你可以这样做My Fiddle
HTML
<div class="container">
<div class="first"></div>
<div class="static"></div>
<div class="third"></div>
</div>
CSS
.container {
display:-webkit-box;
-webkit-box-orient:horizontal;
-webkit-box-align:stretch;
display:-moz-box;
-moz-box-orient:horizontal;
-moz-box-align:stretch;
display:box;
box-orient:horizontal;
box-align:stretch;
color: #ffffff;
}
div {
height: auto;
}
.first {
background-color: #546547;
}
.static {
background-color: #154d67;
width: 660px;
}
.third {
background-color: #c00000;
}
.first, .third {
-webkit-box-flex:1.0;
-moz-box-flex:1.0;
box-flex:1.0;
}
答案 1 :(得分:1)
首先,确保您匹配ID。
thr
与three
不同。
我对css所做的更改:
padding
,以便3个内部div保持在外部div的中心这是CSS:
#x
{
position:relative;
padding:1.5px;
height:34px;
border:1px solid gray;
}
#one
{
height:30px;
border:1px solid red;
width:33%;
float:left;
}
#two
{
height:30px;
border:1px solid green;
width:33%;
float:left;
}
#three
{
height:30px;
border:1px solid blue;
width:33%;
float:left;
}