修改input默认样式

不说话,直接上代码

不需要图片,css解决

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no" />
        <title>修改input默认样式</title>
        <style>
            .subject_mask {
                position: fixed;
                top: 0;
                bottom: 0;
                left: 0;
                right: 0;
                background: rgba(0, 0, 0, 0.5);
            }
            
            .double_maskborder {
                height: 180px;
                width: 245px;
                background: #FFFFFF;
                position: fixed;
                top: 0;
                bottom: 0;
                left: 0;
                right: 0;
                margin: auto;
                border-radius: 5px;
                box-sizing: border-box;
                padding: 20px;
            }
            
            .double_code {
                color: #FFFFFF;
                background: #9c27b0;
                display: inline-block;
                padding: 10px 65px;
                border-radius: 3px;
                font-size: 14px;
            }
            .smart-form .radio {
                position: relative;
                padding-left: 20px;
                line-height: 25px;
            }
            
            .smart-form .radio input {
                position: absolute;
                left: -9999px;
            }
            
            .smart-form .radio i {
                position: absolute;
                top: 0px;
                left: 0;
                width: 12px;
                height: 12px;
                outline: 0;
                border-width: 1px;
                border-style: solid;
                border-radius: 50%;
            }
            
            .smart-form .radio input+i:after {
                content: ‘‘;
                top: 0px;
                left: 0px;
                width: 13px;
                height: 13px;
                border-radius: 50%;
                position: absolute;
                opacity: 0;
                transition: opacity .1s;
                -webkit-transition: opacity .1s;
                background-color: guolao #9c27b0;
                
            }
            
            .smart-form .radio input:checked+i:after {
                opacity: 1;
            
            }
            .smart-form .radio input:checked+i {
                border: none;
            
            }
        </style>
    </head>

<body>
        <div class="subject_mask">
            <div class="double_maskborder">
                <p>您需要购买的科数?</p>
                <form action="" class="smart-form">

<section>
                        <div class="row">
                            <div class="col col-4">
                                <label class="radio">
                        <input type="radio" name="subject" checked="checked">
                        <i></i>1科</label>
                                <label class="radio">
                        <input type="radio" name="subject">
                        <i></i>2科</label>
                                <label class="radio">
                        <input type="radio" name="subject">
                        <i></i>3科</label>
                                <label class="radio">
                        <input type="radio" name="subject">
                        <i></i>4科</label>
                            </div>

</div>
                    </section>

</form>

<p class="double_code">领取优惠码</p>
            </div>

</div>

</body>

</html>

时间: 2024-11-02 23:48:18

修改input默认样式的相关文章

修改select默认样式,兼容IE9

前面有篇文章已经提供了如何修改select标签的默认样式,但是只能兼容到ie10,要兼容ie9只能模拟一个类似的 html结构: <div class="select_diy"> <select> <option value="产品咨询1">产品咨询1</option> <option value="产品咨询2">产品咨询2</option> <option value

修改select 默认样式

删除select默认样式图标 appearance:none;-moz-appearance:none;-webkit-appearance:none; 修改样式图标 background: url('../image/getCustomer/arrow_select.png') no-repeat scroll right center #e9f5fe; 原文地址:https://www.cnblogs.com/gosimple/p/8376388.html

safari input默认样式

在i标签下嵌套一个input标签  设置了 -webkit-apprarence:none: 设置了宽高,和padding:3px 结果placeholder显示不全 经排查 这时候的input默认有圆角 最后通过行高  解决这个问题.

IE与搜狗input 默认样式

在IE10 及以上input框会加上默认的X号,密码框会加上小眼睛 去掉的方法: ::-ms-clear,::-ms-reveal{ display:none; } 在搜狗浏览器下会给密码框加上小键盘图标,去掉的方法(只兼容急速模式): input::-webkit-input-safebox-button { display: none; } 至于为什么不兼容ie 因为ie没有shadow DOM. 什么是shadow DOM? 见 : ChokCoco 的  <神秘的 shadow-dom

chrome的input默认样式黄色背景以及选中加粗的边框处理

问题描述: chrome输入用户名和密码,然后浏览器自己有记忆功能,等再次登录的时候,他会显示chrome默认的黄色背景色,还有选中时周围会有很粗的边框 解决方案: 去掉黄色背景,给input添加autocomplete=‘off’ 去掉粗边框,给input添加outline:none;

小程序 之修改radio默认样式

一.效果图 二.代码 /* 选中后的 背景样式 (红色背景 无边框 可根据UI需求自己修改) */ radio .wx-radio-input.wx-radio-input-checked { border-color: #03a9f4; background: #03a9f4; } /* 自定义样式.... */ radio .wx-radio-input { height: 40rpx; width: 40rpx; margin-top: -4rpx; border-radius: 50%;

样式重置 取消input默认样式

body, h1, h2, h3, h4, h5, h6, hr, p,blockquote, dl, dt, dd, ul, ol, li,pre, form, fieldset, legend, button, input, textarea, th, td, img{border:medium none;margin: 0;padding: 0;list-style-type: none;}

如何修改input file样式

<input type="text" size="20" name="upfile" id="upfile" style="border: 1px dotted #ccc"> <input type="button" value="浏览" onclick="path.click()" style="border: 1px

修改input placeholder样式

<style> /* 通用 */ ::-webkit-input-placeholder { color: rgb(235, 126, 107); } ::-moz-placeholder { color: rgb(235, 126, 107); } /* firefox 19+ */ :-ms-input-placeholder { color: rgb(235, 126, 107); } /* ie */ input:-moz-placeholder { color: rgb(235, 1