7

我有一个使用 rgba 设置透明的 div,并希望在该 div 上有一个也具有透明背景的输入字段。问题是输入字段背景未呈现透明。如果我opacity:0.8;在 div 上使用它,但文本也是透明的,所以我需要rgba. 对于透明 div 之外的第二个输入字段rgba有效。

这是我的示例代码:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Insert title here</title>

<style type="text/css">

.term {
background-color: rgba(0,0,0,0.8);
color: #5fba3d;
width: 200px;
height: 100px;
}

input {
background-color: rgba(0,0,0,0.8);
color: #FFF;
border: none;
}

</style>

</head>

<body>

<div style="background-color:yellow; width:300px;">

   <div class="term">
      Input 1 <input type="text" value="Test" />
   </div>

   <br />

   <input type="text" value="Input 2" />

</div>

</body>
</html>

有任何想法吗?

谢谢!

拿但内尔

4

2 回答 2

9

嘿 Nathaneal 如果我更改 rgba 值,它的工作正常,所以文本不会透明

input {
background-color: rgba(0,0,0,0.1);
color: red;
border: none;
}

我希望这会对你有所帮助......你可以看到演示:- http://jsbin.com/avupaw/16/edit#html,live

于 2012-06-27T08:53:00.627 回答
5

要不就

input {
    background: none;
    color: red;
    border: none;
}
于 2013-07-31T14:09:27.750 回答