HTML标签中同一个<td>里如何设置组件的横向间距
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HTML标签中同一个<td>里如何设置组件的横向间距相关的知识,希望对你有一定的参考价值。
举个简单例子:
<td>
<button type="submit" name="submit" >提交</button>
<button type="reset" name="reset" >重置</button>
<td/>
现在我想扩大下两个Button之间的横向距离,请问谁知道有什么办法吗?前提是必须在一个td里,谢谢。
一\用CSS实现如下:
buttonpadding-left:10px;
二\用&*nbsp;?实现如下:
<td>
<button type="submit" name="submit" >提交</button>
?&*nbsp;&*nbsp;&*nbsp;&*nbsp;
<button type="reset" name="reset" >重置</button>
<td/>
注:把*去掉本回答被提问者采纳 参考技术B <td>
<button type="submit" name="submit" >提交</button>
<button type="reset" name="reset" >重置</button>
<td/>追问
这位大哥是来混分的吗?
在HTML中,如何给表格添加对角线?
在HTML中,如何给表格添加对角线?
表格的基本标签:
<table><tr><td>如何给表格添加对角线?</td></tr></table>
在word中可以田间的,但是复制到html中就没有了
<HTML>
<HEAD>
<TITLE> New Document </TITLE>
<META NAME="Generator" CONTENT="EditPlus">
<META NAME="Author" CONTENT="">
<META NAME="Keywords" CONTENT="">
<META NAME="Description" CONTENT="">
</HEAD>
<script Language="javascript">
function a(x,y,color)
document.write("<img border='0' style='position: absolute; left: "+(x+20)+"; top: "+(y+20)+";background-color: "+color+"' src='px.gif' width=1 height=1>")
</script>
<body leftmargin=20 topmargin=20>
<TABLE border=0 bgcolor="000000" cellspacing="1" width=400>
<TR bgcolor="FFFFFF">
<TD id="td1"> </TD>
<TD>张三</TD>
<TD>李四</TD>
<TD>王五</TD>
</TR>
<TR bgcolor="FFFFFF">
<TD>数学</TD>
<TD>55</TD>
<TD>66</TD>
<TD>77</TD>
</TR>
<TR bgcolor="FFFFFF">
<TD>英语</TD>
<TD>99</TD>
<TD>68</TD>
<TD>71</TD>
</TR>
<TR bgcolor="FFFFFF">
<TD>语文</TD>
<TD>33</TD>
<TD>44</TD>
<TD>55</TD>
</TR>
</TABLE>
<script>
function line(x1,y1,x2,y2,color)
var tmp
if(x1>=x2)
tmp=x1;
x1=x2;
x2=tmp;
tmp=y1;
y1=y2;
y2=tmp;
for(var i=x1;i<=x2;i++)
x = i;
y = (y2 - y1) / (x2 - x1) * (x - x1) + y1;
a(x,y,color);
//line(1,1,100,100,"000000");
line(td1.offsetLeft,td1.offsetTop,td1.offsetLeft+td1.offsetWidth,td1.offsetTop+td1.offsetHeight,'#000000')
</script>
</BODY>
</HTML>
以上是关于HTML标签中同一个<td>里如何设置组件的横向间距的主要内容,如果未能解决你的问题,请参考以下文章
html 如何在css 里设置table 的个个列的固定宽度