3 つの子 DIV を持つ親 DIV があります。1 つの DIV を左にフロートし、別の DIV を右にフロートし、3 番目の DIV を中央に配置する必要があります。
親の幅は 100% なので固定ではありません。
次のことを試しましたが、DIV が中央に配置されていません。
<html>
<head></head>
<body>
<div style="width:100%;border:1px solid #000000;height:200px;">
<div style="width:50px;height:50px;border:1px solid #000000;margin-top:75px;margin-
left:20px;float:left"></div>
<div style="width:50px;height:50px;border:1px solid #000000;margin-top:75px;margin-
left:auto;margin-right:auto;float:left;"></div>
<div style="width:50px;height:50px;border:1px solid #000000;margin-top:75px;margin-
right:20px;float:right;"></div>
</div>
</body>
</html>
テスト用のフィドルを作成しました:http://jsfiddle.net/swS5x/
ありがとう