求代码:在网页中输入文本框定义它的CSS样式,使得输入文本框的背景为灰色...
发布网友
发布时间:2024-10-07 23:22
我来回答
共3个回答
热心网友
时间:2024-10-08 00:19
<TEXTAREA STYLE="color: red;background-color:#CCCCCC;font-weight:bold;">
热心网友
时间:2024-10-08 00:19
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<style type="text/css">
.txt{color: red;background-color:#CCCCCC;font-weight:bold}
</style>
</head>
<body>
<input name="textfield" type="text" class="txt" id="textfield" />
</body>
</html>
看看是不是你想要的。顺便宣传下我的BLOG hi.baidu.com/brislin
热心网友
时间:2024-10-08 00:18
代码:
在单击事件里面就可以实现简单的效果了
private void txt_IF_user_Click(object sender, EventArgs e)
{
txt_IF_user.Text = "";
txt_IF_user.ForeColor = Color.Black;
}