Center HTML Input Text Field Placeholder

前端 未结 10 1876
半阙折子戏
半阙折子戏 2020-11-28 03:53

How can I centre the input field\'s placeholder\'s alignment in a html form?

I am using the following code, but it doesn\'t work:

CSS ->

inpu         


        
10条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-11-28 04:47

    If you want to change only the placeholder style

    ::-webkit-input-placeholder {
       text-align: center;
    }
    
    :-moz-placeholder { /* Firefox 18- */
       text-align: center;  
    }
    
    ::-moz-placeholder {  /* Firefox 19+ */
       text-align: center;  
    }
    
    :-ms-input-placeholder {  
       text-align: center; 
    }
    

提交回复
热议问题