zoukankan
html css js c++ java
css实现细表格原理
Code
<!
DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
>
<
html
xmlns
="http://www.w3.org/1999/xhtml"
>
<
head
>
<
title
>
细表格原理
</
title
>
<
style
type
="text/css"
>
.tbl
{
}
{
background-color
:
Red
;
}
/**/
/*
表格的背景色,即细表格的细线颜色
*/
.tr_bg
{
}
{
background-color
:
#fff
;
}
/**/
/*
行背景色盖住表格背景色,只留下cellspacing
*/
</
style
>
</
head
>
<
body
>
<
table
cellpadding
="5"
cellspacing
="1"
class
="tbl"
>
<!--
cellspacing即线宽
-->
<
tr
class
="tr_bg"
>
<
td
>
hi
</
td
>
<
td
>
hi
</
td
>
</
tr
>
<
tr
class
="tr_bg"
>
<
td
>
hi
</
td
>
<
td
>
hi
</
td
>
</
tr
>
</
table
>
</
body
>
</
html
>
天祺围棋:
www.tianqiweiqi.com
呵呵
凡事以大气象去面对,优秀是一种习惯。
查看全文
相关阅读:
hibernate -- 分页模糊查询中setParameter 和setParameterList
HTTP协议状态码详解(HTTP Status Code)
远程桌面全屏显示
将中文标点符号替换成英文标点符号
MySQL 三种关联查询的方式: ON vs USING vs 传统风格
java如何遍历map的所有的元素(各种方法)
JS处理Cookie
js追加子元素
JAVA编程思想(2)
1047. Student List for Course (25)
原文地址:https://www.cnblogs.com/greatverve/p/1440666.html
最新文章
Codeforces Round #295 (Div. 2)A
Codeforces Round #294 (Div. 2)D
Codeforces Round #294 (Div. 2)C
Codeforces Round #294 (Div. 2)B
Codeforces Round #294 (Div. 2)A
Codeforces Round #293 (Div. 2) D. Ilya and Escalator 概率DP
Codeforces Round #293 (Div. 2) C. Anya and Smartphone 数学题
Codeforces Round #293 (Div. 2) B. Tanya and Postcard 水题
Codeforces Round #293 (Div. 2) A. Vitaly and Strings
poj 3630 Phone List 贪心
热门文章
hdu 2222 Keywords Search AC自动机
poj 3461 Oulipo kmp
KMP模板
poj 2104 K-th Number 主席树
poj 3660 Cow Contest Flyod
tsinsen A1067. Fibonacci数列整除问题 dp
poj 1182 食物链 并查集
并查集
java中为什么inputstreamreader和buffered reader要配合着用
赋值表达式的返回值
Copyright © 2011-2022 走看看