Answers for "css center placeholder text"

CSS
4

how to center placeholdr text

input[type="text"]::placeholder {  
                  
                /* Firefox, Chrome, Opera */ 
                text-align: center; 
            } 
/*Must include type="text" in HTML*/
Posted by: Guest on February-12-2020
-1

css style placeholder

::placeholder {
  /*styles here*/
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  /*styles here*/
}
Posted by: Guest on June-08-2020

Browse Popular Code Answers by Language