how to put divs side by side code example

Example 1: how to align two divs side by side

.wrapper {
    display: flex;
    flex-wrap: wrap;
}

.wrapper>div {
    flex: 1 1 150px;
    height: 500px;
}

Example 2: place div side by side

<div style="width: 100%; display: table;">
    <div style="display: table-row">
        <div style="width: 600px; display: table-cell;"> Left </div>
        <div style="display: table-cell;"> Right </div>
    </div>
</div>

Example 3: place div side by side

<div style="width: 100%; overflow: hidden;">
    <div style="width: 600px; float: left;"> Left </div>
    <div style="margin-left: 620px;"> Right </div>
</div>

Tags:

Css Example