发票样板 html+css

2 篇文章 1 订阅

在这里插入图片描述

html部分:



    <div class="invoicMain">
        <!-- head start -->
        <div class="invoiceHeader">
            <div class="invoiceHeader-left">
                <ul class="headerLeft">
                    <li>
                        <img src="./qrcode.png" alt="">
                    </li>
                    <li>
                        <label>机器编号:</label><span></span>
                    </li>
                </ul>
                <div class="headerMiddle">
                    <h1>XX增值税专用发票</h1>
                    <div class="line"></div>
                </div>
            </div>

            <ul class="headerRight">
                <li>
                    <label> 发票代码: </label><span>111111</span>
                </li>
                <li>
                    <label> 发票号码: </label><span>111111</span>
                </li>
                <li>
                    <label> 开票日期: </label><span>2021年02月23日</span>
                </li>
                <li>
                    <label>&nbsp;&nbsp;&nbsp;&nbsp;码: </label><span>11111 22222 33333 44444</span>
                </li>
            </ul>
        </div>
        <!-- head end -->
        <!-- invoice body start -->
        <div class="invoiceBody">
            <div class="userInfo">
                <div class="buy">购买方</div>
                <ul>
                    <li>
                        <label>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;称:</label><span>11111</span>
                    </li>
                    <li>
                        <label>纳税人识别号:</label><span>11111</span>
                    </li>
                    <li>
                        <label>地址、&nbsp;&nbsp;&nbsp;电话:</label><span>11111</span>
                    </li>
                    <li>
                        <label>开户行及账号:</label><span>11111</span>
                    </li>
                </ul>
                <div class="password">密码区</div>
                <div class="pwdInfo">aaa</div>
            </div>
            <div>
                <table class="GoodsTable" cellpadding="0" cellspacing="0">
                    <tr>
                        <td style="width: 24%">货物或应税劳务、服务名称</td>
                        <td style="width: 10%">规格型号</td>
                        <td style="width: 7%">单位</td>
                        <td style="width: 10%">数量</td>
                        <td style="width: 10%">单价</td>
                        <td style="width: 16%">金额</td>
                        <td style="width: 7%">税率</td>
                        <td style="width: 16%; border-right: none;">税额</td>
                    </tr>
                    <tr class="invoice-list">
                        <td>1</td>
                        <td>2</td>
                        <td>3</td>
                        <td>4</td>
                        <td>5</td>
                        <td>6</td>
                        <td>7</td>
                        <td>8</td>
                    </tr>


                    <tr class="total">
                        <td>合计</td>
                        <td></td>
                        <td></td>
                        <td></td>
                        <td></td>
                        <td></td>
                        <td></td>
                        <td></td>
                    </tr>
                    <tr class="GoodsTotal">
                        <td>价税合计(大写)</td>
                        <td colspan="7">
                            <div style="width: 100%;display:flex">
                                <div type="text" style="width: 60%">11</div>

                                <div type="text" style="width: 30%"> (小写)11</div>
                            </div>

                        </td>
                    </tr>
                </table>
                <div class="userInfo">
                    <div class="buy">购买方</div>
                    <ul>
                        <li>
                            <label>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;称:</label><span>11111</span>
                        </li>
                        <li>
                            <label>纳税人识别号:</label><span>11111</span>
                        </li>
                        <li>
                            <label>地址、&nbsp;&nbsp;&nbsp;电话:</label><span>11111</span>
                        </li>
                        <li>
                            <label>开户行及账号:</label><span>11111</span>
                        </li>
                    </ul>
                    <div class="password">备注</div>
                    <div class="pwdInfo">aaa</div>
                </div>
            </div>

        </div>
        <!-- invoice body start -->
        <ul class="invoicetFooter">
            <li>
                <label>收款人:</label>
            </li>
            <li>
                <label>复核:</label>
            </li>
            <li>
                <label>开票人:</label>
            </li>
            <li>
                <label>销售方:(章)</label>
            </li>
        </ul>
    </div>

css部分


<style>
    ul,
    ul li {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    label {
        color: #9c5223;
    }

    .invoicMain {
        width: 920px;
        margin: 0 auto;
        font-size: 14px;
        color: #000;
        padding: 20px;
        border: 3px solid #000;
    }

    .invoiceHeader {
        height: 126px;
        display: flex;
        /* justify-content: space-between; */
        align-items: center;
    }

    .headerLeft li:nth-child(1) {
        text-indent: 1em;
    }

    .headerLeft li img {
        width: 105px;
        height: 105px;

    }

    .headerMiddle h1 {
        font-size: 32px;
        color: #9c5223;
        font-family: 'kaiti';
        margin: 5px 12px;
    }

    .line {
        height: 2px;
        border-top: #9c5223 1px solid;
        border-bottom: #9c5223 1px solid;
    }

    .headerRight li {
        line-height: 24px;
    }

    .invoiceBody {
        border: 1px solid #9c5223;
    }

    .userInfo {
        width: 100%;
        display: flex;
        align-items: center;
        height: 96px;
        border-bottom: 1px solid #9c5223;
    }

    .userInfo ul {
        width: 50%;
        margin: 0 5px;
        padding: 0;

    }

    .userInfo ul li {
        line-height: 24px;
    }

    .buy {
        width: 20px;
        border-right: 1px solid #9c5223;
        padding: 0 10px;
        text-align: center;
        height: 100%;
        display: flex;
        align-items: center;
        color: #9c5223;
    }

    .password {
        width: 20px;
        padding: 0 10px;
        border-right: 1px solid #9c5223;
        border-left: 1px solid #9c5223;
        text-align: center;
        height: 100%;
        display: flex;
        align-items: center;
        color: #9c5223;
    }

    .pwdInfo {
        flex: 1;
        padding-left: 5px;
    }

    .goodsInfo {
        height: 210px;
        margin: 0;
        padding: 0;

    }

    .goodsInfo li {
        display: flex;
        color: #9c5223;
        text-align: center;
    }

    .name {
        width: 260px;
        border-right: 1px solid #9c5223;
    }

    .spec {
        width: 140px;
        border-right: 1px solid #9c5223;
    }

    .qty {
        width: 108px;
        border-right: 1px solid #9c5223;
    }

    .unit,
    .taxRate {
        width: 65px;
        border-right: 1px solid #9c5223;
    }

    .qty,
    .price {
        width: 160px;
        border-right: 1px solid #9c5223;
    }

    .money {
        flex: 1;
        border-right: 1px solid #9c5223;
    }

    .taxAmount {
        flex: 1;
    }

    .GoodsTable {
        height: 210px;
        width: 100%;
        border-collapse: collapse;
    }

    .GoodsTable .invoice-list {
        /* height: 24px; */
    }

    .GoodsTable td {
        border-right: 1px solid #9c5223;
        color: #9c5223;
    }

    .GoodsTable tr:nth-child(1),
    .GoodsTable tr:nth-last-child(2) {
        height: 24px;
    }

    .GoodsTable tr:nth-last-child(1) {
        height: 34px;
    }

    .GoodsTable tr:nth-child(1) td {
        text-align: center;
    }

    .GoodsTotal {
        border-top: 1px solid #9c5223;
        border-bottom: 1px solid #9c5223;
    }

    .total td:nth-child(1) {
        text-align: center;
    }

    .invoicetFooter {
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: space-between;
    }

    .invoicetFooter li {
        width: 25%;
    }
    .invoiceHeader-left{
        width: 67%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .headerRight{
        margin-left: 28px;
    }
    .headerMiddle{
        margin-right: 15px;
    }
</style>

  • 3
    点赞
  • 19
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值