table表格美化效果css代码

代码语言:html

所属分类:布局界面

代码描述:table表格美化效果css代码

代码标签: 效果 css

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <style type="text/css">
        .gridtable {
            width: 100%;
            text-align: center;
        }
        table.gridtable {
            font-family: verdana,arial,sans-serif;
            font-size: 11px;
            color: #333333;
            border-width: 1px;
            border-color: #666666;
            border-collapse: collapse;
        }
        table.gridtable th {
            border-width: 1px;
            padding: 8px;
            border-style: solid;
            border-color: #666666;
            background-color: #dedede;
        }
        table.gridtable td {
            border-width: 1px;
            padding: 8px;
            border-style: solid;
            border-color: #666666;
            background-color: #ffffff;
        }
    </style>

</head>
<body>
    <!-- Table goes in the document BODY -->
    <table class="gridtable"&g.........完整代码请登录后点击上方下载按钮下载查看

网友评论0