I made a responsive login form with a login box aligned to the right, but I want my login box to display in the center at different screen sizes using CSS media queries.
My current CSS code is:
enter code here
.login {
position: absolute;
top: 8em;
right: 5vw;
}
.login-card {
min-width: 20vw;
max-width: 25em;
min-height: 20vh;
max-height: 25em;}
This answer is a little bit general, but the question doesn't give me much information about your issue. It's recommended to give at least a snippet of the code you're struggling with
With that out of the way, I would insert some CSS attributes on the media query like this:
If you are using
position: absolute
to align your element to the right, remember to insertposition: inherit
inside the media query to overwrite this value.UPDATE Now with the snippet, I can see that your CSS is not stating a left attribute, this is pretty useful to align something to the right. In order to center it, just add a
left:
property to your media query with the same value of the right attribute, the CSS will try to satisfy both attributes, you should also put anmargin: auto;
attribute, to give the CSS more freedom to play around with the margin and center the login panel. Your media query should look somehow like this: