Computer >> कंप्यूटर ट्यूटोरियल >  >> प्रोग्रामिंग >> CSS

CSS के साथ पूर्ण-चौड़ाई वाली छवि में फ़ॉर्म कैसे जोड़ें?


उदाहरण

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body, html {
   height: 100%;
   margin: 0;
   padding: 0;
   font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
* {box-sizing: border-box;}
.backgroundImage {
   height: 100%;
   background-image: url("https://images.pexels.com/photos/1424246/pexels-photo-1424246.jpeg?auto=compress&cs=tinysrgb&dpr=1&w=1000");
   background-position: center;
   background-repeat: no-repeat;
   background-size: cover;
   position: relative;
}
.formContainer {
   position: absolute;
   right: 40%;
   max-width: 400px;
   margin: 20px;
   padding: 16px;
   background-color: white;
}
label{
   font-size: 20px;
   font-weight: bolder;
}
input[type=text], input[type=password] {
   width: 100%;
   font-size: 18px;
   padding: 15px;
   margin: 5px 0 22px 0;
   border: none;
   background: #e3ff95;
}
input[type=text]:focus, input[type=password]:focus {
   background-color: #ddd;
   outline: none;
}
.btn-login {
   background-color: #4CAF50;
   color: white;
   padding: 16px 20px;
   border: none;
   cursor: pointer;
   width: 100%;
   font-size: 20px;
}
</style>
</head>
<body>
<div class="backgroundImage">
<form class="formContainer">
<h1>Register Here</h1>
<label for="eMail">Email</label>
<input type="text" placeholder="Enter your Email ID" name="eMail" required>
<label for="pass">Password</label>
<input type="password" placeholder="Enter your Password" name="pass" required>
<label for="Address">Address</label>
<input type="text" placeholder="Enter your Address" name="Address" required>
<button class="btn-login">Login</button>
</form>
</div>
</body>
</html>

आउटपुट

उपरोक्त कोड निम्न आउटपुट उत्पन्न करेगा -

CSS के साथ पूर्ण-चौड़ाई वाली छवि में फ़ॉर्म कैसे जोड़ें?


  1. CSS के साथ रजिस्टर फॉर्म कैसे बनाएं? CSS के साथ रजिस्टर फॉर्म कैसे बनाएं?

    CSS के साथ रजिस्टर फॉर्म बनाने के लिए कोड निम्नलिखित है - उदाहरण <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style> body {    font-family: Arial, Helvetica, sans-serif; } h1{   &n

  1. CSS के साथ संपर्क फ़ॉर्म कैसे बनाएं? CSS के साथ संपर्क फ़ॉर्म कैसे बनाएं?

    CSS का उपयोग करके संपर्क फ़ॉर्म बनाने के लिए निम्नलिखित कोड है - उदाहरण <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style> * {box-sizing: border-box;} body{    font-family: 'Segoe

  1. कैसे सीएसएस के साथ होवर पर संक्रमण जोड़ने के लिए? कैसे सीएसएस के साथ होवर पर संक्रमण जोड़ने के लिए?

    CSS पर होवर के साथ ट्रांजिशन जोड़ने के लिए, कोड इस प्रकार है - उदाहरण <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1" /> <style>    body {       font-family: "Segoe UI&qu