I have the following code example:
<style> { margin: 0; padding: 0; } html, body { margin: 0; height: 100%; width: 100%; overflow:hidden; background-size: 100% 100%; background-repeat: no-repeat; } .input { margin: 0; padding-top:0px; padding-bottom:0px; padding-left:0px; padding-right:0px; opacity: 0.6; filter: alpha(opacity=60); background-color:#000; border:none; outline:none; } #input { opacity: 0.6; filter: alpha(opacity=60); border:none; outline:none; } .bgDiv { margin: 0; padding-top:0px; padding-bottom:0px; padding-left:0px; padding-right:0px; z-index:1; } .mainDiv { margin: 0; padding-top:0px; padding-bottom:0px; padding-left:0px; padding-right:0px; z-index:3; } </style>
<div id="bgDiv" name="bgDiv" class="bgDiv"> <img src="http://wallpapercave.com/wp/2u5OrmL.png" style="background-image: url('http://wallpapercave.com/wp/2u5OrmL.png'); -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;"> </div> <div id="mainDiv" name="mainDiv" class="mainDiv"> <form id="iform" name="iform" action="index.php" method="post"> <input type="text" maxleth="18" align="center" id="input" name="input" class="input" placeholder="placeholder" style="border:0;outline:none;width:100%;height:100%;font-size:98px;text-align: center;" autocomplete="off" autofocus> </form> </div>
I am trying to make text input a transparent background so that the user can see the main background image of the page. At the same time, you can still see the text entered in the field.
input[type=text] { background: transparent; border: none;
} background color: RGBA (0,0,0,0);
none of them work or have no effect. Please, help.
source share