zoukankan      html  css  js  c++  java
  • html学习笔记一

    <!-- 购物车图标编程 -->
     <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8" />
        <title>jd-car</title>
        <style type="text/css">
        #main{
             150px;
            border: 1px #ddd solid;
            background: #f1f1f1;
            font-size: 12px;
            color:gray;
            text-indent: 3.8em;
            line-height: 40px;
            
            /*sprite img*/
            background-image: url('http://misc.360buyimg.com/jdf/1.0.0/unit/globalImages/1.0.0/jd2015img.png');
            background-repeat: no-repeat;
            background-position: 20px -46px;
        }
        #num{
            color:white;
            font-weight: bold;
            background:red;
            text-indent: 0px;
            text-align: center;
            /*行内块*/
            display: inline-block;
             16px;
            line-height: 16px;
            border-radius: 8px 8px 8px 0px;

            position: relative;
            top: -17px;
        }

        </style>
    </head>
    <body>
        <div id="main">
            <span>我的购物车</span>
            <span id="num">0</span>
            <span id="spinner">></span>
        </div>
    </body>
    <ml> 

      

  • 相关阅读:
    Python 向列表中添加元素
    [python] 查找列表中重复的元素
    Excel文件的读写
    Oracle EBS AP 取消付款
    Oracle EBS AP取消核销
    Oracle EBS AP 创建贷项通知单并核销到相应发票
    Oracle EBS AR 其他API
    Oracle EBS AR 冲销收款
    Oracle EBS 银行账户API
    Oracle EBS AR 客户API
  • 原文地址:https://www.cnblogs.com/gdouKang/p/6171339.html
Copyright © 2011-2022 走看看