HTML Compiler Online
Javascript Online Compiler
index.html
Change Theme
Compress code
Format code
Download Code
Clear Code
Copy Code!
RunĀ
ctrl+s or click
Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Article - center using flexbox</title> <style> /* center element using flexbox */ .center { display: flex; justify-content: center; } .parent { border: 2px solid #4B5681; background: #7E89B4; padding: 20px; } .child { height: 100px; width: 200px; background: #353C5A; font-family: sans-serif; text-align: center; color: white; } </style> </head> <body> <h2>To align a div element to the center use flexbox to its parent element and set justify-content: center.</h2> <br> <div class="parent center"> <div class="child">Child</div> </div> </body> </html>
RunĀ