Answer the question
In order to leave comments, you need to log in
What styles to prescribe for page layout?
There is a view page -
The problem is that when the window is narrowed, elements 3 and 4 run into elements 1, 2, 5.
What to register so that they line up in a vertical row.
I tried:
Answer the question
In order to leave comments, you need to log in
In order for the right column to be below the left one on a narrow screen, both of them need to cancel the float using media queries.
For example:
@media screen and (max-width: 768px) {
.column-left,
.column-right {
float: none;
}
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question