DECO1400 Lecture 5

Organisation System

Schemes

Structures

HTML

Flex Box

<head>
    <style>
        #flex-container {
            display: flex;
        }

        .flex-item {

        }
    </style>
</head>
<body>
    <div id="flex-container">
        <div class="flex-item">
        <div class="flex-item">
        <div class="flex-item">
    </div>
</body>

Grouping CSS Selectors

p, h1, .highlight {
    color: red;
}