<!DOCTYPE html> <html> <head> <meta charset=utf-8> <style type="text/css"> * { margin: 0; padding: 0; box-sizing: border-box; } .container{ position: relative; } .left { border: 1px solid black; position: absolute; left: 0px; width: 100px; } .center { border: 1px solid black; position: absolute; left: 100px; right:100px; } .right { border: 1px solid black; position: absolute; right: 0px; width: 100px; } </style> </head> <body> <section class="container"> <article class="left"><br /><br /></article> <article class="center"><br /><br /><br /></article> <article class="right"><br /><br /><br /><br /></article> </section> </body> </html>