博客列表 >html和css基础知识之实战训练(产品管理)—2018年8月21日17:59:07

html和css基础知识之实战训练(产品管理)—2018年8月21日17:59:07

Hi的博客
Hi的博客原创
2018年08月21日 18:09:48494浏览

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

以下是我的代码。

实例

<!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>

运行实例 »

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


声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议