CSS怎么控制表单初始值颜色

html-css048

CSS怎么控制表单初始值颜色,第1张

第一个方法,input 里面加placeholder属性

第二个方法:在input上面加一个层,单独设置灰色颜色,点击input的时候使其隐藏,这时设置input的颜色就不影响了!

<style>

tr {

background-color: #66FF00

}

.ex:hover {

background-color: #FF8A00

}

</style>

<table width="100" height="50" border="1" cellpadding="0" cellspacing="0">

<tr class="ex">

<td>表格1</td>

</tr>

</table>

<p></p>

<table width="100" height="50" border="1" cellpadding="0" cellspacing="0">

<tr>

<td>表格2</td>

</tr>

</table>

已经测试过了,我用的是class,用id也可以的,楼主可以自己试试。不懂可以再问我。

使用 size

<input type="text" name="name" value="" size="20" />

<input type="password" name="password" value="" size="20" />

或者,使用 CSS

input[type=text], input[type=password] {

width: 100px

}

如果两者都使用,CSS设置的宽度将优先于size设置的宽度