Can someone assist me in creating rows of links in html+css with a specific layout? The desired format should follow this structure:
(Psuedocode)
<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>
I have experimented with using different combinations of floats, positions, and displays for each of the three divs inside, but haven't been successful in finding the correct setup. Any assistance would be greatly appreciated!