HTML CSS examples for CSS Layout:Flex Center
Center Element in flexbox
<html lang="en"> <head> <title> gc-nomade</title> <style> html {<!-- w w w . j ava2 s .c om--> width:100%; height:100%; } body { width:100%; height:100%; margin:0px; display:flex; } div { height:501px; width:501px; background-color:Chartreuse; border:6px solid yellow; margin:auto; flex-shrink:0; } </style> </head> <body translate="no"> <div></div> </body> </html>