• web开发的一些材料


    刚做一个搜索框时,发现原有的搜索框不是很美观。于是上网搜了下,网上有很多这样的代码,在此记录一下,以便以后查阅。

    1.搜索框

      代码如下:

    <title>美观的CSS搜索框</title>
    <style type="text/css">
    .searchinput{
        border-right-width: 0px;
        padding-left: 3px;
        width: 168px;
        font-family: arial;
        float: left;
        border-top-width: 0px;
        border-bottom-width: 0px;
        color: #636365;
        margin-left: 4px;
        font-size: 8pt;
        vertical-align: middle;
        border-left-width: 0px;
        margin-right: 3px;
    }
    .tab_search{
        border-bottom: #cccccc 1px solid;
        border-left: #cccccc 1px solid;
        height: 25px;
        border-top: #cccccc 1px solid;
        border-right: #cccccc 1px solid;
    
    }
    .searchaction{
        width: 21px;
        float: left;
        height: 17px;
    }
    </style>
    <form action="#" name="search">
    <table border="0" cellpadding="0" cellspacing="0" class="tab_search">
        <tr>
            <td>
    <input type="text" name="q" title="Search" class="searchinput" id="searchinput" onkeydown="if (event.keyCode==13) {}" onblur="if(this.value=='')value='请输入商品关键字';" onfocus="if(this.value=='请输入商品关键字')value='';" value="请输入商品关键字" size="10"/>
            </td>
            <td>
                <input type="image" width="21" height="17" class="searchaction" onclick="if(document.forms['search'].searchinput.value=='- Search Products -')document.forms['search'].searchinput.value='';" alt="Search" src="images/searchbutton.gif" border="0" hspace="2"/>
            </td>
        </tr>
    </table>
    </form>
        

    其中用到的图片为

    在路上...
  • 相关阅读:
    python https请求报错:SSLCertVerificationError: [SSL: CERTIFICATE_VERIFY_FAILED]
    python打包为exe文件
    文件自定义扫描工具
    pandas 的常用方法
    cisco应用
    Cisco 模拟配置
    python 识别图片上的数字
    OpenSSL
    OpenSSL
    OpenSSL
  • 原文地址:https://www.cnblogs.com/chenkaiadd/p/3051951.html
Copyright © 2020-2023  润新知