DEV Community

Sidd
Sidd

Posted on

Help understanding web responsiveness

Can someone help me understand web responsiveness with CSS? I would like to move the card img below the form once I change the browser width.

[https://i.ibb.co/5BrX8zK/Screenshot-11-08-2020-at-18-39.gif]

Top comments (7)

Collapse
 
maikcodes profile image
maik pleines

Hey @Sidd, maybe this will help you!

css-tricks.com/snippets/css/a-guid...

You can use the flex-wrap property to move the card image below your form. There are many more ways to do this though. You might want to check out this article:

developer.mozilla.org/en-US/docs/L...

Collapse
 
joelbonetr profile image
JoelBonetR 🥇 • Edited

First you need to know is how to structure your elements on a web view.
You have some easy ways for reaching that job nowadays such as css flexbox or css grid. You can also use bootstrap, mustard ui or another framework.

It's about structure from the beginning and not something you add over a basic structure so you'll need to recode your layout.

I've an article about building a flex layout to fit all projects that you can check to solve your drama. :)

Collapse
 
mbaapohz profile image
Mbaapoh

Use flex layout, it will be very straight forward. Especially when used with bootstrap 4

Collapse
 
antonioeduardofernandes profile image
antonioeduardofernandes

In this scenario, as maik already said, display:flex is your best friend. Much simpler, cleaner and fast way to do it.

Collapse
 
devcoder profile image
devcoder

CSS media queries is all you need
youtu.be/2KL-z9A56SQ

Collapse
 
amauryperalta28 profile image
Amaury R. Peralta Febles

Look for bootstrap framework, is going to help you to accomplish that responsiveness

Collapse
 
btlm profile image
btlm

I don't really think if it is good to advise someone to use Bootstrap instead of code things themself and have a chance to understand how things work.