summaryrefslogtreecommitdiff
path: root/Tests/LibWeb/Layout/input/flex/flex-container-with-max-width-and-negative-margin-in-same-axis.html
blob: 500860daad241f5ef307cad833463ad7d3db3ef9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<!DOCTYPE html><html><head><style>
#container-of-flex {
    max-width: 100px;
}

#flex {
    display: flex;
    margin-left: -100px;
    background-color: orange;
    height: 100px;
}
</style></head><body><div id="container-of-flex"><div id="flex"> </div>