zoukankan      html  css  js  c++  java
  • 【电商3】header search

    • 小盒子先定位

    • placeholder和padding-left

    • 因为只有一个.search,前面就不用写别的父级元素了“header”

    html

    <!-- search模块 -->
            <div class="search">
                <input type="search" placeholder="语言开发">
                <button>搜索</button>
            </div>
    

    common.css

    /* 因为只有一个.search,前面就不用写别的父级元素了“header” */
    .search {
        position: absolute;
        left: 346px;
        top: 25px;
         538px;
        height: 36px;
        border: 2px solid #b1191a;       /* 2px */
    }
    
    .search input {         /* 小盒子先定位 */
        float: left;
        height: 32px;
         454px;
        padding-left: 10px;      /*attention*/
    }
    
    .search button {
        float: right;
        height: 36px;
        font-size: 16px;
         82px;
        color: white;
        background-color: #b1191a;
    }
    
    
  • 相关阅读:
    Spring 中各种通知
    Spring 中的注解
    Spring_DI利用set方法赋值Demo
    Beta冲刺总结
    用户使用调查报告
    Beta(7/7)
    Beta(6/7)
    Beta(5/7)
    Beta(4/7)
    Beta(3/7)
  • 原文地址:https://www.cnblogs.com/icemiaomiao3/p/14165419.html
Copyright © 2011-2022 走看看