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"> <title>CSS - flexbox demo example</title> <style> body { font-family: sans-serif; } .flex-container { display: flex; flex-wrap: wrap; justify-content: space-around; padding: 10px; background: #7E89B4; border: 2px solid #4B5681; } .flex-container div { margin: 5px; color: white; padding: 15px 20px; background: #353C5A; } </style> </head> <body> <div class="flex-container"> <div>1</div> <div>2</div> <div>3</div> <div>4</div> <div>5</div> <div>6</div> <div>7</div> <div>8</div> <div>9</div> <div>10</div> <div>11</div> <div>12</div> </div> </body> </html>
RunĀ