'CSS layout, flexbox
Solution 1:[1]
Apply one of these rules
#red {
transform: translateY(50%);
}
or
#red {
position: relative;
top: 50px;
}
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | 1900 TD Lemon |