Center HTML Input Text Field Placeholder

HtmlCss

Html Problem Overview


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

input.placeholder {
	text-align: center;
}
.emailField {
	top:413px;
	right:290px;
	width: 355px;
	height: 30px;
	position: absolute;
	border: none;
	font-size: 17;
	text-align: center;
}

HTML ->

<form action="" method="POST">
	<input type="text" class="emailField" placeholder="[email protected]" style="text-align: center" name="email" />
	<!<input type="submit" value="submit" />  
</form>

Html Solutions


Solution 1 - Html

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

Solution 2 - Html

input{
   text-align:center;
}

is all you need.

Working example in FF6. This method doesn't seem to be cross-browser compatible.

Your previous CSS was attempting to center the text of an input element which had a class of "placeholder".

Solution 3 - Html

The HTML5 placeholder element can be styled for those browsers that accept the element, but in diferent ways, as you can see here: http://davidwalsh.name/html5-placeholder-css.

But I don't believe that text-align will be interpreted by the browsers. At least on Chrome, this attribute is ignored. But you can always change other things, like color, font-size, font-family etc. I suggest you rethinking your design whether possible to remove this center behavior.

EDIT

If you really want this text centered, you can always use some jQuery code or plugin to simulate the placeholder behavior. Here is a sample of it: http://www.hagenburger.net/BLOG/HTML5-Input-Placeholder-Fix-With-jQuery.html.

This way the style will work:

input.placeholder {
    text-align: center;
}

Solution 4 - Html

You can make like this:

    <center>
    <form action="" method="POST">
    <input type="text" class="emailField" placeholder="[email protected]" style="text-align: center" name="email" />
    <input type="submit" value="submit" />  
</form>
    </center>

Working CodePen here

Solution 5 - Html

you can use also this way to write css for placeholder

input::placeholder{
   text-align: center;
}

Solution 6 - Html

You can use set in a class like below and set to input text class
CSS:

 .place-holder-center::placeholder {
        text-align: center;
    }

HTML:

<input type="text" class="place-holder-center">

Solution 7 - Html

You can try like this :

input[placeholder] {
   text-align: center;
}

Solution 8 - Html

::-webkit-input-placeholder {
 font-size: 14px;
 color: #d0cdfa;
 text-transform: uppercase;
 text-transform: uppercase;
 text-align: center;
 font-weight: bold;
}
:-moz-placeholder { 
 font-size:14px;
 color: #d0cdfa;
 text-transform: uppercase;
 text-align: center;
 font-weight: bold;
}
::-moz-placeholder { 
 font-size: 14px;
 color: #d0cdfa; 
 text-transform: uppercase;
 text-align: center;
 font-weight: bold;
} 
:-ms-input-placeholder { 
 font-size: 14px; 
 color: #d0cdfa;
 text-transform: uppercase;
 text-align: center;
 font-weight: bold;
}

Solution 9 - Html

By using the code snippet below, you are selecting the placeholder inside your input, and any code placed inside will affect only the placeholder.

input::-webkit-input-placeholder {
      text-align: center
}

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questionmax_View Question on Stackoverflow
Solution 1 - Htmlprarthana.mView Answer on Stackoverflow
Solution 2 - HtmlJamie DixonView Answer on Stackoverflow
Solution 3 - HtmlErick PetrucelliView Answer on Stackoverflow
Solution 4 - HtmlIan David BocioacaView Answer on Stackoverflow
Solution 5 - HtmlAnkit JaiswalView Answer on Stackoverflow
Solution 6 - HtmlMohammad DaliriView Answer on Stackoverflow
Solution 7 - HtmlRani UtamiView Answer on Stackoverflow
Solution 8 - HtmlRudresh BhattView Answer on Stackoverflow
Solution 9 - HtmlBrandon MayView Answer on Stackoverflow