I\'m trying to have something like this:
|--------------fixed width---------------| Title1 .......................... value1 Title2 ................... another valu
Meanwhile Flexbox has full browser support, which allows for a more elegant solution without the center element.
.left, .right { border: 1px dotted red; } .container { display: flex; justify-content: space-between; width: 200px; border: 1px dotted red; padding: 5px; }
Title value