Blogger Information
Blog 35
fans 0
comment 0
visits 22310
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
html和css基础知识之实战训练(产品管理)—2018年8月21日17:59:07
Hi的博客
Original
495 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><img src="./static/images/1.jpg" alt="" width="50"></td>
        <td>苹果</td>
        <td>5.8元</td>
        <td><a href="">编辑</a> | <a href="">删除</a></td>
    </tr>
    <tr>
        <td>2</td>
        <td><img src="./static/images/2.jpg" alt="" width="50"></td>
        <td>葡萄</td>
        <td>10.5元</td>
        <td><a href="">编辑</a> | <a href="">删除</a></td>
    </tr>
    <tr>
        <td>3</td>
        <td><img src="./static/images/3.jpg" alt="" width="50"></td>
        <td>香蕉</td>
        <td>4.5元</td>
        <td><a href="">编辑</a> | <a href="">删除</a></td>
    </tr>
    <tr>
        <td>4</td>
        <td><img src="./static/images/4.jpg" alt="" width="50"></td>
        <td>西瓜</td>
        <td>3.5元</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