html, 用style样式怎么修改文本域底框的颜色,代码如何编写,谢谢
<html><head><metahttp-equiv="content-type"content="text/html;charset=utf-8"/></head><...
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
</head>
<body>
<form action="/example/html/form_action.asp" method="get">
<p>First name: <input type="text" name="fname" /></p>
<p>Last name: <input type="text" name="lname" /></p>
<input type="submit" value="Submit" />
</form>
</body>
</html>
在w3school 里,
设置表单的样式
属性选择器在为不带有 class 或 id 的表单设置样式时特别有用:
<style>
input[type="text"]
{width:150px;}
我就不明白,
1、第一个<style> 这样写是不是错了,应该按格式
<style type="text/css">才对
2、属性选择器的格式应该也是
[type="text"]{width:150px;}才对呀,就是前面的input不能写吧, 展开
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
</head>
<body>
<form action="/example/html/form_action.asp" method="get">
<p>First name: <input type="text" name="fname" /></p>
<p>Last name: <input type="text" name="lname" /></p>
<input type="submit" value="Submit" />
</form>
</body>
</html>
在w3school 里,
设置表单的样式
属性选择器在为不带有 class 或 id 的表单设置样式时特别有用:
<style>
input[type="text"]
{width:150px;}
我就不明白,
1、第一个<style> 这样写是不是错了,应该按格式
<style type="text/css">才对
2、属性选择器的格式应该也是
[type="text"]{width:150px;}才对呀,就是前面的input不能写吧, 展开
展开全部
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
</head>
<style type="text/css">
input { background:#ccc;}
</style>
<body>
<form action="/example/html/form_action.asp" method="get">
<p>First name: <input type="text" name="fname" /></p>
<p>Last name: <input type="text" name="lname" /></p>
<input type="submit" value="Submit" />
</form>
</body>
</html>
你说的是这样的吗?
更多追问追答
追问
是这样的,但是我在书上看到另外一种,你帮我看,这样对吗,
(这里应该是,才对吧)
input[type="text"] 这里的input 是不是不要才对呀,因为这样才符合属性选择器的格式才对呀,
{ background-color:yellow;}
追答
首先 这样写是对的,但标准化是按照我那样写。 input是必须要的 input是文本框的规定的样式。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询