旧版本firefox添加扩展addons的地址

不要在 firefox 本身的addons 中去查找, 搜索, 那个是搜索不到的, 因为那个是针对 最新版的, 旧版本的很多插件都不能用, 被移除了,
要在 那个专门 提供 插件的站点中去寻找扩展

https://addons.mozilla.org/en-US/firefox/

=======================================

函数名func和 函数名加括号func()的区别?

========================

表格嵌套时,即表格中插入表格,边框重叠的两种实现方式

方式1:

<table border="0" cellpadding="0" cellspacing="0" width="100%">

方式2:

<table border="0" cellpadding="0" style="border-collapse:collapse" width="100%">

在table标签加入 frame="void"

做了一个表格,里面嵌套了另外个表格,如果表格border都有设置,会发现边框都重叠变粗,因此需要做如下更改:

外表格样式
<table border="1" cellspacing="0" cellpadding="0" style="border-collapse: collapse;”>

内表格样式

<table border="1" cellspacing="0" cellpadding="0" style="border-collapse: collapse;border-0px; border-style:hidden;">

使用bootstrap的table样式,在非纯白背景下,会有单元格边框线,影响美观。

去除方式:

    <style type="text/css">
         body{background:#d4d0c8;}  //自定义背景
         td{border: 1px solid transparent !important;}  //使用透明的方式去除边框线
     </style>

若要去除某一部分边框线,如右边框线,可将border改为 border-right

原文地址:https://www.cnblogs.com/bkylee/p/10540789.html