Answers for "html input text placeholder position"

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

how to margin placeholdr text

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

Browse Popular Code Answers by Language