html 圆角table
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="description" content="" />
<title>CSS</title>
<style type="text/css">
<!--
*{margin:0;padding:0;}
body {
font: 11px Arial, sans-serif;
padding: 10px;
color: #333;
}
.divBox {
padding: 10px;
border-right: 1px solid #000;
border-left: 1px solid #000;
}
b, u, i {
display: block;
height: 1px;
overflow: hidden;
}
b.f1 {
margin: 0 4px;
background: #000;
}
b.f2 {
margin: 0 2px;
border-right: 2px solid #000;
border-left: 2px solid #000;
}
b.f3 {
height: 2px;
margin: 0 1px;
border-right: 1px solid #000;
border-left: 1px solid #000;
}
-->
</style>
</head>
<body>
<div style="width:200px;">
<b class="f1"></b><b class="f2"></b><b class="f3"></b>
<div class="divBox">CSS</div>
<b class="f3"></b><b class="f2"></b><b class="f1"></b>
</div>
</body>
</html>
相关文档:
Html是否是标准文档往往影响js的执行效果。 比如:在IE6下 document.documentElement.clientHeight 这个函数是获取可视窗口文档高度,如果html不是标准文档 则返回值是零.而document.body.clientHeight 能返回相应的值.相反如果是标准文档 document.body.clientHeight 返回值是0;
类似的还有document.documentElemen ......
一、字符串分割分析法。
这里是一个获取URL带QUESTRING参数的JAVASCRIPT客户端解决方案,相当于asp的request.querystring,PHP的$_GET
函数:
<Script language="javascript">
function GetRequest() {
var url = location.search; //获取url中"?"符后的字串
var theRequest = ne ......
来源:http://club.it.sohu.com/r-it-1350941-0-0-0.html
前言
最近关于HTML5 吵得火热,很多人认为HTML5出现会秒杀Flash,以至于在各大web前端开发论坛吵得不可开交。论坛里三言两语说的不够尽兴,只好在自己一亩三分地里敞开了说说。也当一次神棍,展望一下web前端开发的未来。
首先这里所说的HTML5也不仅指HTML5 ......
<html xmlns="http://www.w3.org/1999/xhtml">
<head><title>
</title>
</head>
<body>
<table width="100%" border="1" cellpadding="0" bordercolorlight="#999999" bordercolordark="#FFFFFF"
&n ......