0

我有一个 html 表格,其中 ( td) 单元格包含文本输入 ( <input type="text"/>)。一切都很好(用户可以在输入中输入 OK),除了当我.append()输入单元格具有值的行时,当输入上方似乎添加了额外的边距时,破坏了表格行的对齐方式(这发生在 chrome 和野生动物园,但火狐是好的)。

$('.myTable').append('<tr><td><input type="text" value="product code 1"/></td>'+
     '<td><input type="text" disabled="disabled"/></td></tr>');

我在css中找不到任何东西。有人遇到/解决了这个问题吗?

4

1 回答 1

-1

疯狂的笑声!好的,我明白了!我有以下css浏览器重置代码:

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu,nav, output, ruby, section, summary,
time, mark, audio, video {
    margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline;
}

删除vertical-align:baseline;位解决了问题!或者,删除tbody,tr并且td也有效。非常感谢人们试图提供帮助。

于 2012-08-21T04:50:40.093 回答