HTML CSS examples for CSS Property:background-color
Set background color to one side of centered div
<html lang="en"> <body translate="no"> <style> .wrapper {<!-- w w w . j ava 2 s. co m--> display: flex; width: 100%; justify-content: center; } .centered { margin: 0; background-color: white; flex: 1; } .left-red { margin: 0; background-color: red; width: 15%; } .right { margin: 0; background-color: gray; width: 15%; } </style> <div class="wrapper"> <div class="left-red"> </div> <div class="centered"> <div> Some menu... </div> </div> <div class="right"> </div> </div> </body> </html>