代码如下:
Tabs
/* Remove margin padding */
body,h1,h2,h3,h4,h5,h6,hr,p,blockquote,dl,dt,dd,ul,ol,li,pre,form,fieldset,legend,button,input,textarea,th,td { margin:0; padding:0; }
/* Default Font...
分类:
其他好文 时间:
2014-07-22 00:16:33
阅读次数:
316
代码如下:
/*
这以下是重置样式
Remove margin padding */
body,h1,h2,h3,h4,h5,h6,hr,p,blockquote,dl,dt,dd,ul,ol,li,pre,form,fieldset,legend,button,input,textarea,th,td { margin:0; padding:0; }
/*...
分类:
移动开发 时间:
2014-07-22 00:15:36
阅读次数:
361
chrome浏览器中,为td设置border:1px dotted #eee;时,有些地方会出现实线。 这是因为Chrome在border合并时,有点碰运气的感觉,两条虚线正好交错在一起时会合成一条实线。 Demo中table的宽度是886px,增加1px或者...
分类:
其他好文 时间:
2014-07-21 10:32:52
阅读次数:
140
<table?class="r_line"?cellpadding="3"?cellspacing="1"?width="100%">
????<tr?class="r_title">
????????<td>编号</td>
????</tr>
<asp:Repeater?ID="rptRecord"?runat="server">
??...
分类:
其他好文 时间:
2014-07-21 10:09:35
阅读次数:
190
我们经常会遇到设置table边框的时候,对于非专业设计来说,很想淡然的设置td的csstd{border:solid#0001px;}但是我们看到的效果总是不如人意,每个cell中间总会有一个像素的空白如下效果:那么如何设置才能把这个边框中的空白像素去掉呢?设置table的CSS为{border-collapse:coll..
分类:
其他好文 时间:
2014-07-21 01:37:24
阅读次数:
203
可以使用 HTML 创建表格。实例表格这个例子演示如何在 HTML 文档中创建表格。每个表格由 table 标签开始。每个表格行由 tr 标签开始。每个表格数据由 td 标签开始。一列: 100一行三列: 100 200 300两行三列:表格边框本例演示各种类型的表格边框。带有普通的边框: ...
分类:
Web程序 时间:
2014-07-17 21:33:17
阅读次数:
497
$("#result").find("tr").each(function () { $(this).find("td").each(function () { if ($(this).text().indexOf("惠") > ...
分类:
Web程序 时间:
2014-07-14 19:04:17
阅读次数:
276
同学接了个很简单的网站。结果在布局的时候发现网页头部和网页主体之间差不多有1px的间隙。怎么也去除不了,帮忙看了看,隋记录下来,是这样的,网页头部和主体分别在两个中(使用table布局),贴上简单demo:效果如下,间隙消失了,最重要的是红色矩形圈起来的那句。如果去掉红色矩形圈起来的部分,效果如下:
分类:
Web程序 时间:
2014-07-14 10:57:13
阅读次数:
283
/*table-layout:fixed 会使表格均等分*/#TreeView1 table { width:290px; table-layout: fixed; }#TreeView1 td:first-child { ...
分类:
Web程序 时间:
2014-07-12 16:11:21
阅读次数:
148