【Css】input输入文本框的样式大全和搜索框实例(图文和完整源码)

一、默认显示信息

 <input type="text" required="required" placeholder=" 请输入金额" name="u"
         onfocus="if(placeholder==' 请输入金额'){placeholder=''}"
         onblur="if(placeholder==''){placeholder=' 请输入金额'}"
         v-model:value="UserName">
 </input>

默认信息CSS样式

    /* 默认信息placeholder的颜色和字体 */
    ::-webkit-input-placeholder {
        color: rgb(197, 197, 197);
        font-size: 15px;
    }

二、文本框样式

outline: none;  // 获得焦点不显示边框颜色

   input {
        width: 78%;
        height: 35px;
        background-color: rgb(255, 255, 255);
        border-bottom-left-radius: 50px;
        border-top-left-radius: 50px;
        margin-top: 5px;
        margin-left: 2%;
        font-size: 16px;
        padding-left: 15px;
        border: 0px;
        color: black;
        outline: none;  // 获得焦点不显示边框颜色
        padding-left: 15px;  
    }

三、搜索框实例

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>消息</title>
</head>
<link rel="stylesheet" href="css/body.css">
<link href="js/font-awesome/css/font-awesome.min.css" rel="stylesheet">




<style>
    #search {
        width: 100%;
        height: 50px;
        background-color: rgb(248, 248, 248);
        padding-top: 1px;
    }

    #search input {
        width: 78%;
        height: 35px;
        background-color: rgb(255, 255, 255);
        border-bottom-left-radius: 50px;
        border-top-left-radius: 50px;
        margin-top: 5px;
        margin-left: 2%;
        font-size: 16px;
        padding-left: 15px;
        border: 0px;
        color: black;
        outline: none;
        padding-left: 15px;  
    }

    /* 默认信息placeholder的颜色和字体 */
    ::-webkit-input-placeholder {
        color: rgb(197, 197, 197);
        font-size: 15px;
    }

    #search button {
        width: 14%;
        height: 37px;
        background-color: rgb(240, 238, 238);
        /* background-color: rgb(3, 20, 152); */
        border: 0px;
        margin-left: -5px;
        border-bottom-right-radius: 50px;
        border-top-right-radius: 50px;
        color: rgb(116, 116, 116);
        font-size: 20px;
        position: relative;
        top: 1px;
    }
</style>

<body>
    <div id="search">
        <input type="text" required="required" placeholder=" 请输入搜索信息" name="u"
            onfocus="if(placeholder==' 请输入搜索信息'){placeholder=''}" onblur="if(placeholder==''){placeholder=' 请输入搜索信息'}"
            v-model:value="UserName"></input>

        <button>
            <i class="fa fa-search"></i>
        </button>
    </div>

</body>

</html>

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

敦厚的曹操

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值