我試圖讓我的表單輸入透明,並把它放在我的div上面。基本上我希望文本字段對其背後的任何內容都是透明的。有什麼建議麼?使文本輸入框透明?應該簡單嗎?
<head>
<style type="text/css">
.WRAPPER {
background-color: #000;
height: 575px;
width: 975px;
background-image: url(exit-gate/exit-gate-bg.png);
top: auto;
margin: -8px;
}
body {
background-color: #000;
}
</style>
<style type="text/css">
term {
background: transparent;
border: none;
}
</style>
</head>
<body>
<div id="WRAPPER">
<div class="term"><input name="email" type="text" id="email">
<form name="form1" method="post" action="insert_ac.php">
<input type="image" src="exit-gate/white-box-10.png" alt="{alternate text}" name="submit" value="submit">
</form>
</div>
</div>
</body>
</html>
</div>
你的「term」css聲明需要是「.term」纔有工作的希望。你的DOM結構也混亂了,你在關閉HTML標籤後肯定不應該有一個「div」。 – DrCord
@DrCord - 感謝您指出。我是新手......所以,當我開始時,事情往往會變得混亂,但我會把它清理乾淨。謝謝 – HoustonGuy