0

好的,这是我的代码,问题是我有一个按钮和一个提交,但是由于某种未知原因,提交按钮中的文本放错了位置

这是代码

<input type="button"  id="openerCol" style = "width: 100px; height: 25px" value="Add new column" onclick="showPartial()"/>
 <br/>
 <input type="button"  id="openerInsCol" style = "width: 100px; height: 25px" value="Insert column" onclick="showPartial()"/>
 <br/>
 <input type="button"  id="openerUpCol" style = "width: 100px; height: 25px" value="Update column" onclick="showPartial()"/>
 <br/>
 <input type="button"  id="opener3" style = "width: 100px; height: 25px" value="Delete column" onclick="showPartial()"/>
 <br/>
 <input type="submit" name="Index" style = "width: 100px;  text-align: top; height: 25px"; value="Add Row" />
 <br/>
 <input type="button"  id="openerDelR" style = "width: 100px; height: 25px" value="Delete row" onclick="showPartial()"/>
 <br/>
 <input type="button"  id="openerEditCell" style = "width: 100px; height: 25px" value="Edit cell" onclick="showPartial()"/> 

在这里你可以看到屏幕截图http://tinypic.com/r/rwpc48/6

有任何想法吗?

4

4 回答 4

2

您在样式属性中放错了分号。我已经为你修好了那条线

 <input type="submit" name="Index" style = "width: 100px;  text-align: top; height: 25px;" value="Add Row" />
于 2013-01-09T09:05:11.417 回答
0

;in可能有问题height: 25px";

所以只需删除那个分号。

我只是复制并粘贴您的代码,删除;.

这是演示:JSFiddle

于 2013-01-09T09:07:55.663 回答
0
style = "width: 100px;  text-align: top; height: 25px";

应该

style = "width: 100px;  text-align: top; height: 25px;"
于 2013-01-09T09:08:04.730 回答
0

尝试删除“文本对齐:顶部;” 或者尝试复制其他按钮的所有属性

于 2013-01-09T09:14:52.330 回答