Untitled

mail@pastecode.io avatar
unknown
plain_text
7 months ago
896 B
1
Indexable
Never
HTML:
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <link rel="stylesheet" href="L10.Flexbox Practice.css">

    <title>Flexbox</title>
</head>
<body>
    <div id="container">
        <div style="background-color: aqua;"></dev>
        <div style="background-color: blue;"></dev>
        <div style="background-color: yellowgreen;"></dev>
        <div style="background-color: yellow;"></dev>
        <div style="background-color: plum;"></dev>
    </div>
</body>
</html>


CSS:
body {
    display: flex;
    justify-content: center;

    font-family: serif;
}

#container {
    background-color: burlywood;
    width: 80%;
    height: 500px;
    /*display: flex;
    justify-content: center;*/
}

#container div {
    width: 200px;
    height: 200px;
}
Leave a Comment