请教大侠们!~ 我的问题是如何除去表单下面多余的空行!~在ie中显示正常~!
请看下图:
上面的问题请大侠们帮个忙!~ 我实在是不知道应该怎么设置!~ 请大侠指教~!
希望达到下图的效果:
我的代码如下:
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<style type="text/css">
<!--
#form1 {
padding: 5px;
}
-->
</style>
</head>
<body>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td bgcolor="#FF0000"><form id="form1" name="form1" method="post" action="">
<input type="text" name="textfield" id="textfield" />
<input type="submit" name="button" id="button" value="提交" />
</form></td>
</tr>
</table>
</body>
</html>
一个小技巧就可以解决,把form镶嵌到表格代码里面,仔细看看吧。
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<style type="text/css">
<!--
#form1 {
padding: 5px;
}
-->
</style>
</head>
<body>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<form id="form1" name="form1" method="post" action="">
<tr>
<td bgcolor="#FF0000">
<input type="text" name="textfield" id="textfield" />
<input type="submit" name="button" id="button" value="提交" />
</td>
</tr>
</form>
</table>
</body>
</html>
<!--
#form1 {
padding:9px 15px 0px 10px;
}
-->
自己调其中的参数
再不会加我776977960
<style type="text/css">
<!--
#form1 {
padding: 5px;
}
-->
</style>
内边设置了 把买边距设置为0 就可以
要CSS样式表中添加
<style type="text/css">
<!--
#form1 {
padding: 5px;
margin:0px;
}
-->
</style>