i need help!!!!
i'm trying to style a login form with an opacity fade but i just want the background to be faded not the content, how can i fix this ? <html> <section id="content"> <form id="inForm"> <br> <p id="n">First Name:</p> <br> <input id="Fname" type="text" name="Fname" value="..."> <br> <p id="n">Last Name:</p> <br> <input type="text" name="Lname" value="..."> <br> <br> <input type="button" value="submitt" onclick=" "> </form> </section> </html> <style> #content{ border-style:solid; border-color:; border-radius:50px; background-color:gray; opacity: 0.5; filter: alpha(opacity=50); height:190px; margin:600px; margin-top:100px; margin-bottom:5px; text-align:center; box-shadow:; position:relative; top:180px; width:200px; } #n{ margin: 0; padding:0; font-weight: bold; color: #000000; } </style>