Placeholder font-size bigger than 16px

CssHtmlPlaceholder

Css Problem Overview


I have read a couple of articles about styling the placeholder of an input field using ::-webkit-input-placeholder in HTML5. It works perfectly, except for one thing.

If I try to increase the font-size to a value higher than 16px, the text gets "cut" at the bottom. This happens regardless of height and padding of the input itself. Does anyone know a way of avoiding this problem, either using pure CSS or javascript?

I have added a screenshot of two inputfields where the placeholders have an font-size of 20px

enter image description here

Jsfiddle: https://jsfiddle.net/bvwdg86x/

Css Solutions


Solution 1 - Css

The input and its placeholder must have matching font styles

input {
    display: block;
    width: 400px;
    padding: 0 20px;
}

input,
input::placeholder {
    font: 20px/3 sans-serif;
}

<input type="text" placeholder="Example Input">

A note about placeholder accessibility

The screenshot included in the question shows the placeholder values being used as labels. This technique may be problematic for users of assistive technology and is considered an accessibility anti-pattern.

> From W3C › WAI › Placeholder Research › Avoid use of placeholder values: >
> A placeholder attribute should not be used as an alternative to a label. The placeholder is a short hint intended to aid the user with data entry so it should not be identical to the label element. The placeholder may not be available to assistive technology and thus may not be relied upon to convey an accessible name or description -- it acts similar to fallback content.

See also:

Bonus:

Solution 2 - Css

Placeholder styles will not resize an input field and will not affect its box model. Add font-size to your input to fix the placeholder from getting cut off.

You also might consider adding placeholder styles for other browsers...

::-moz-placeholder {} /* Firefox 19+ */
:-moz-placeholder {}  /* Firefox 18- */
:-ms-input-placeholder {} /* IE */

Solution 3 - Css

You have to add 'overflow: visible' to the placeholder in your css to get rid of the cropping.

::placeholder{
overflow: visible;
}

Solution 4 - Css

Meanwhile, the browser vendors implemented the ::placeholder CSS pseudo-element.

You can find the current state of browser compatibility on caniuse.com.

Currently (2019-04-29) there are following notes:

> ::-webkit-input-placeholder for Chrome/Safari/Opera (Chrome issue #623345) > > ::-ms-input-placeholder for Edge (also supports webkit prefix)

Solution 5 - Css

input {
    width: 450px;
    padding: 0px 15px;
}

input,
input::-webkit-input-placeholder {
    font-size: 25px;
    line-height: 4;
}

<input type="text" placeholder="My Cool Placeholder Text">

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
QuestionValdemar Edvard Sandal RolfsenView Question on Stackoverflow
Solution 1 - CssgfullamView Answer on Stackoverflow
Solution 2 - CssDave O'BrienView Answer on Stackoverflow
Solution 3 - CssMohammed ZaidView Answer on Stackoverflow
Solution 4 - CssˈvɔləView Answer on Stackoverflow
Solution 5 - Cssimnik18View Answer on Stackoverflow