易截截图软件、单文件、免安装、纯绿色、仅160KB

html css 表格边框

<html>
<head>
<mce:style type = "text/css"><!--
table
{
border-collapse:collapse;
}
td
{
border:solid 1px black;
}

--></mce:style><style type = "text/css" mce_bogus="1">table
{
border-collapse:collapse;
}
td
{
border:solid 1px black;
}
</style>
</head>
<body>
<table>
<tr>
<td>111</td><td>222</td><td>333</td>
</tr>
<tr>
<td>444</td><td>555</td><td>666</td>
</tr>
<tr>
<td>777</td><td>888</td><td>999</td>
</tr>
</table>
</body>
</html>


相关文档:

coolite control add the html tag

I always consider the coolitm control only can use its control tag in its body.
But I found that it can use html tag ,this very good.
so I show the sample to other:
<ext:Window
ID="Window1"
runat="server"
Width="500"
Height="485"
......

最近自己在写javascript/html/css的树控件

    完成以下部分:
    1. 树可以接受singleXml格式和json以及jsonarray格式的数据;
    2. 复选框勾选和折叠子节点的逻辑用div嵌套来实现,效率更高;并提供了快速画树的方法;(存在bug:快速画树效率并不高,div嵌套有问题);
    3.增加树的深度 this.depth ......

css定位详解

先来看下position各属性的解释
absolute
:  生成绝对定位的元素,相对于 static 定位以外的第一个父元素进行定位。
                 元素的位置通过 "left", "top", "right" 以及 "bottom&q ......

CSS FireFox and IE 换行问题解决方案

/* 禁止换行 */
.nowrap{word-break:keep-all;white-space:nowrap;}
/* 强制换行 */
.break{word-break:break-all;}
css强制不换行
div{white-space:nowrap;}
css自动换行
div{ word-wrap: break-word; word-break: normal; }
css强制英文单词断行
div{word-break:break-all;}
大家都知道连续的英文或数字会把DIV ......
© 2009 ej38.com All Rights Reserved. 关于E健网联系我们 | 站点地图 | 赣ICP备09004571号