Example of how to clear form style in css

黄舟
Release: 2018-05-26 15:39:04
Original
3555 people have browsed it

Commonly used clear styles for forms in development projects:

1. Change the default font color of placeholder

::-webkit-input-placeholder{color: #333;}
:-moz-placeholder{color: #333;}
:-moz-placeholder{color: #333;} 
:-ms-input-placeholder{color: #333;}
Copy after login

2. Cancel the up and down arrows of the input number

input::-webkit-outer-spin-button,input
::-webkit-inner-spin-button{-webkit-appearance: none !important;}input[type="number"]{-moz-appearance:textfield;}
Copy after login

3. select The drop-down selection box option text is right-aligned

direction: rtl;
Copy after login

4. Select the right arrow to hide

-webkit-appearance: none;
Copy after login

5. Clear the draggable function in the lower right corner of the textarea

resize:none;
Copy after login

6. The height of the textarea text box Adaptive

<p class="ta_box">
    <textarea class="ta"></textarea></p>
Copy after login
.ta_box{
    width: 400px;
    height: auto;
    overflow: hidden;
    border: 1px solid #999;
    box-sizing: border-box;
}.ta{
    min-height: 30px;
    outline: none;
    resize: none;
    width: 500px;
    box-sizing: border-box;
    vertical-align: top;
    border: none;
}
Copy after login
$.fn.autoHeight = function () {    function autoHeight (elem) {
        elem.style.height = &#39;auto&#39;;
        elem.scrollTop = 0;  //防抖动
        elem.style.height = elem.scrollHeight + &#39;px&#39;;
    }    this.each(function () {
        autoHeight(this);
        $(this).on(&#39;keyup&#39;,function () {
            autoHeight(this);
        });
    });
}
$(&#39;textarea&#39;).autoHeight();
Copy after login

The code here needs to reference JQ, and the outermost .ta_box in the structure is to eliminate the slider and optimize the user experience.

The extension function of JQ is used here

The above is the detailed content of Example of how to clear form style in css. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template