Greetings! I'm a beginner in programming, so please excuse me if my issue seems simple.
I have a website with a login form, but I am struggling to make it responsive. Every time I attempt to do so, the entire layout gets messed up.
Could someone kindly assist me? Here is my code:
Login.Php:
<!DOCTYPE html>
<html>
<head>
<title>User Login</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- More code here -->
Login.css
*{
margin: 0;
padding: 0;
font-family: sans-serif;
color: white;
}
<!-- CSS styling for login page -->
General.css
html,body{
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
top:0px;
left:0px;
height: 100%;
min-height: 100%;
}
Regrettably, I haven't been able to solve this on my own. Your help is greatly appreciated!
I am completely new to the world of programming.
Thanks in advance!