When building a mobile interface with bootstrap, one design option is to use placeholders to signify the field label.

This approach has many critics who questions the page accessibility, the fact that when you click into the field and start typing you lose the context, and so on. It is however an approach which is frequently used. In this article I wanted to show how I made the PSC contest submission form go from “Labels” to “placeholders” using media queries.
Labels
Looking at the form normally we see labels and fields

If we have Labels and placeholders together at the same time, the effect is not really all that pleasing to the eye

As the screen size is reduced the bootstrap styling kicks in around the Galaxy Note 4 size

But when we get to the phone size screen the labels are removed and the the placeholders are made visible.

If you go the https://contest.psclistens.com site you can play with it yourself by resizing the page
How does that work then?
The labels are easy – they are hidden with a media query
@media screen and (max-width: 460px), screen and (max-device-width: 460px){
label:not(.projectSponsor) {
display: none !important;
}
}
The placeholders are not so easy though. The first problem is that the “placeholder” attribute does not have a CSS value to “display:none”. The second is that they are as yet not governed by a non-vendor prefixed style. Although you cannot hide the placeholders you can color them.
The code below is a media query which basically says that when the screen is above 768 pixels then the placeholders get a style color of white. I had to !important then to get it to override bootstrap properly. When the screen gets smaller the white override is lost and the bootstrap grey is seen.
@media (min-width: 768px) {
.form-control::-moz-placeholder {
color: white !important;
opacity: 1;
}
.form-control::-moz-placeholder {
color: white !important;
opacity: 1;
}
*::-moz-placeholder {
color: white !important;
}
.::-webkit-input-placeholder {
color: white !important;
opacity: 1;
}
::-webkit-input-placeholder {
color: white !important;
opacity: 1;
}
*::-webkit-input-placeholder {
color: white !important;
}
}
So the labels are hidden at 460 but the placeholder is displayed at 768 – so yes if you watch carefully as the screen is reduced you will see a screen size between the iPad and the phone where both are visible. This was done for effect so that you can see it happen.
Conclusion
Without going into the merits of whether or not this is an appropriate design method for displaying information to users, this served as a nice example of what is possible. This was all done within the context of an XPage.
Check it out – https://contest.psclistens.com