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> <head> <meta charset="UTF-8"> <title>CSS - flex basis</title> <style> .container { display: flex; border: 2px solid #bd1e60; } #target1 { flex-basis: 150px; background: #bd1e60; } .container div { margin: 1px; padding: 10px 15px; color: white; font-family: sans-serif; background-color: #27aaa4; } </style> </head> <body> <h2>flex-basis: size</h2> <p>flex-basis set the initial size of a flex item.</p> <div class="container"> <div>1</div> <div>2</div> <div>3</div> <div id="target1">4</div> <div>5</div> </div> </body> </html>
RunĀ