Blogger Information
Blog 35
fans 0
comment 0
visits 22319
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
html和css基础知识之实战训练(分类管理)—2018年8月21日17:55:41
Hi的博客
Original
630 people have browsed it

根据昨晚所学的知识进行布局的实战操作。

以下是我的代码。

实例

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>分类管理</title>
    <style>
        table, th, td {
            border: 1px solid black;
        }
        table {
            width: 650px;
            margin: auto;
            border-collapse: collapse;
            text-align: center;
        }

        td {
            padding: 10px;
        }
        a {
            text-decoration-line: none;
            color: black;
        }

        a:hover {
            color: #a58722;
            text-decoration-line: underline;
        }

        tr:first-child {
            margin-top: 20px;
            background-color: steelblue;
        }

        table caption {
            font-size: 1.5rem;
            font-weight: bolder;
            margin-bottom: 20px;
        }

        p {
            text-align: center;
        }

        p a:first-child {
            width: 56px;
        }

        p a:last-child {
            width: 56px;
        }
        p a {
            display: inline-block;
            width: 28px;
            height: 24px;
            border: 1px solid black;
            margin-left:2px;
            line-height: 24px;

        }

        .active {
            background-color: black;
            color: white;
        }

        .more {
            border: none;
        }

    </style>
</head>
<body>
<table>
    <caption>分类管理</caption>
    <tr>
        <td>ID</td>
        <td>类目</td>
        <td>品+种</td>
        <td>库存</td>
        <td>操作</td>
    </tr>
    <tr>
        <td>1</td>
        <td>苹果</td>
        <td>红富士</td>
        <td>999</td>
        <td><a href="">编辑</a> | <a href="">删除</a></td>
    </tr>
    <tr>
        <td>2</td>
        <td>葡萄</td>
        <td>黑提子</td>
        <td>965</td>
        <td><a href="">编辑</a> | <a href="">删除</a></td>
    </tr>
    <tr>
        <td>3</td>
        <td>香蕉</td>
        <td>普通香蕉</td>
        <td>851</td>
        <td><a href="">编辑</a> | <a href="">删除</a></td>
    </tr>
    <tr>
        <td>4</td>
        <td>西瓜</td>
        <td>黑美人</td>
        <td>885</td>
        <td><a href="">编辑</a> | <a href="">删除</a></td>
    </tr>
</table>

<p>
    <a href="">首页</a>
    <a href="" class="active">1</a>
    <a href="">2</a>
    <a href="">3</a>
    <a href="">4</a>
    <a href="" class="more">...</a>
    <a href="">尾页</a>
</p>
</body>
</html>

运行实例 »

点击 "运行实例" 按钮查看在线实例


Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments