こんにちは、CSS で div '2' の幅を静的に保ちながら、div 'one' と div 'three' を画面側に自動調整するにはどうすればよいですか? 3 つの 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;}
どんな提案でも大歓迎です。ご覧いただきありがとうございます