我正在尝试在 html+css 中创建链接行,其格式应如下所示:
(伪代码)
<body class="class_with_minmaxwidth_set_in_css">
<div class="container">
<div class="row">
<div class="fixed_left_40px"></div>
<div class="fluid_center_which_changes_with_window_size"></div>
<div class="fixed_right_40px"></div>
</div>
... repeat more row divs
</div>
</body>
我已经尝试了为其中的三个 div 中的每一个使用浮动、位置和显示的各种组合,但仍然无法设置正确的组合。帮助将不胜感激!