Is there a pure CSS way to make an input transparent?

前端 未结 7 613
有刺的猬
有刺的猬 2021-01-30 10:39

How can I make this input transparent?


I\'ve tried this but it doesn\'t work.

backgro         


        
相关标签:
7条回答
  • 2021-01-30 10:45
    input[type="text"]
    {
        background: transparent;
        border: none;
    }
    

    Nobody will even know it's there.

    0 讨论(0)
  • 2021-01-30 10:45

    In case you just need the existence of it you could also throw it off the screen with display: fixed; right: -1000px;. It is useful when you need an input for copying to clipboard. :)

    0 讨论(0)
  • 2021-01-30 10:49

    If you want to remove the outline when focused as well try:

    input[type="text"],
    input[type="text"]:focus   
    {
             background: transparent;
             border: none;
             outline-width: 0;
    }
    
    0 讨论(0)
  • 2021-01-30 10:51

    As a general rule, you should never completly remove the outline or :focus style.

    https://a11yproject.com/posts/never-remove-css-outlines

    ...using outline: none without proper fallbacks makes your site significantly less accessible to any keyboard only user, not only those with reduced vision. Make sure to always give your interactive elements a visible indication of focus.

    0 讨论(0)
  • 2021-01-30 10:53

    I like to do this

    input[type="text"]
    {
        background: rgba(0, 0, 0, 0);
        border: none;
        outline: none;
    }
    

    Setting the outline property to none stops the browser from highlighting the box when the cursor enters

    0 讨论(0)
  • 2021-01-30 10:57

    The two methods previously described are not enough today. I personnally use :

    input[type="text"]{
        background-color: transparent;
        border: 0px;
        outline: none;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        width:5px;
        color:transparent;
        cursor:default;
    }
    

    It also removes the shadow set on some browsers, hide the text that could be input and make the cursor behave as if the input was not there.

    You may want to set width to 0px also.

    0 讨论(0)
提交回复
热议问题