Center Element in flexbox - HTML CSS CSS Layout

HTML CSS examples for CSS Layout:Flex Center

Description

Center Element in flexbox

Demo Code

ResultView the demo in separate window

<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>

Related Tutorials