Home  >  Article  >  Web Front-end  >  Example of how to clear form style in css

Example of how to clear form style in css

黄舟
黄舟Original
2018-05-26 15:39:043545browse

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;}

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;}

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

direction: rtl;

4. Select the right arrow to hide

-webkit-appearance: none;

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

resize:none;

6. The height of the textarea text box Adaptive

<p class="ta_box">
    <textarea class="ta"></textarea></p>
.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;
}
$.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();

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!

Statement:
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