热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

如何在HTML中用完全填充100%?-HowdoIcompletelyfilla
100%withinHTML?
IhavesomeHTMLthatinjectwithJavascriptintoawebpage.ThefinalHTMLIinjectlookslike:我有

I have some HTML that inject with Javascript into a web page. The final HTML I inject looks like:

我有一些用Javascript注入网页的HTML。我注入的最终HTML看起来像:

For some odd reason when I examine tbody in Firebug, its size seems to be 4px smaller than the table. How do I get the to fill up ?

出于某些奇怪的原因,当我在Firebug中检查tbody时,它的大小似乎比表格小4px。如何填写?

2 个解决方案

#1


14  

try adding the following css to your table:

尝试将以下css添加到您的表:

border-collapse: collapse;

#2


14  

Try adding:

尝试添加:

border-collapse: collapse;

To your table. Or try setting:

到你的桌子。或尝试设置:

display: block;

or

要么

display: table

on the tbody element.

在tbody元素上。


推荐阅读
author-avatar
cocoC陳靜雯具_606
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有