Replies: 2 comments
-
Can you give the exact steps to reproduce the issue. BTW, the media query will only work once the preview is resized to the given media width. |
Beta Was this translation helpful? Give feedback.
-
It is a matter of writing. --------Not working-------- .flex01{ --------It's okay-------- .flex01{ @media screen and (max-width: 768px) { |
Beta Was this translation helpful? Give feedback.
-
The preview will not work with the following responsive writing style.
Can I make it work in the settings?
.flex01{
display: flex;
align-items: flex-start;
@media screen and (max-width: 768px) {
flex-direction:column;
}
}
Beta Was this translation helpful? Give feedback.
All reactions