placeholder Questions
3
Solved
I can't change the input placeholder color in Edge Browser.
:-ms-input-placeholder is not working but works fine on IE 10 & IE 11.
input:-ms-input-placeholder {
font-style:italic;
color: red...
Mcgee asked 19/8, 2015 at 12:54
1
Code is below. Currently the placeholder text overlaps the icon. I need the placeholder text indented to the right of the icon. Perhaps there is a better way to include an icon and placeholder text...
Yolande asked 26/4, 2018 at 16:30
2
Solved
I'm having trouble escaping double dollars from a string to be used with regex functions pattern/matcher.
This is part of the String:
WHERE oid_2 = $$test$$ || oid_2 = $$test2$$
and this is the...
Countrified asked 12/4, 2017 at 7:49
4
Given a string and a list of substring that should be replaces as placeholders, e.g.
import re
from copy import copy
phrases = ["'s morgen", "'s-Hertogenbosch", "depository financial institution...
Sexpot asked 14/3, 2018 at 8:36
2
Is it possible to style only a certain part of the placeholder text in an input? I'd like the "Click here" portion of the placeholder text to be bold and underlined.
<input type="text" class="i...
Gavin asked 2/2, 2018 at 5:15
3
Solved
I'm trying to create a GUI with Swing. My problem is, I have a textfield, but I want it to have a "placeholder" (like in html). I read here and there that it can be done by overriding the paint() o...
Assisi asked 23/10, 2012 at 15:10
1
I'm trying to change the fields placeholder of "billing address 2" in the checkout page, using the following code:
add_filter( 'woocommerce_checkout_fields' , 'custom_override_checkout_fields',999...
Lepine asked 3/1, 2018 at 15:39
1
I'm using an if/else expression and a translation of the possible values inside the placeholder-Tag of an HTML input-element. It obviously doesn't work this way, because of the nested double quotes...
Succussion asked 11/2, 2016 at 11:3
1
Here is the example I am testing on MNIST dataset for quantization. I am testing my model using below code:
import tensorflow as tf
from tensorflow.examples.tutorials.mnist import input_data
fro...
Garbers asked 26/11, 2017 at 1:21
6
I have multiple input fields some fields are required and required field mention with * so I need to change input placeholder * color only, not change whole placeholder color check below image what...
Musculature asked 31/10, 2017 at 5:33
5
Solved
What is the difference between <asp:Panel > and <asp:PlaceHolder > in ASP.NET?
When should you use one over the other?
Hydrosphere asked 27/1, 2009 at 13:14
14
Solved
I have a small issue, the placeholder attribute for input boxes is not supported in IE 8-9.
What is the best way to make this support in my project (ASP Net). I am using jQuery.
Need I use some ot...
Curitiba asked 22/2, 2013 at 9:30
1
Solved
I'm adding some components to a library module manifest file. Apparently it is possible to use the ${applicationId} placeholder even though I have not declared it in the library's build.gradle file...
Misleading asked 2/2, 2016 at 10:7
6
Solved
I'm trying to dynamically update the HTML5 placeholder attribute of a text field using jQuery.
$("textarea").attr("placeholder", "New placeholder text");
From Firebug, I can observe that the pla...
Carbonization asked 12/10, 2010 at 21:56
2
Solved
i am using latest version of Glide as of now which is glide:4.0.0-RC1 and not able to find methods like placeholder, error, fallback e.t.c. Probably they have provided alternate for it but i ...
Distich asked 19/7, 2017 at 10:20
3
Solved
Everybody loves
QString("Put something here %1 and here %2")
.arg(replacement1)
.arg(replacement2);
but things get itchy as soon as you have the faintest chance that replacement1 actually cont...
Michal asked 9/3, 2011 at 17:19
6
Solved
Can you please help me.
In UITextField when we provide a placeholder text its placeholder string will be gone when we enter any character. How can I achieve that only entered character will be gon...
Dasya asked 5/9, 2017 at 6:50
1
Solved
I want to set a placeholder text in a QLineEdit. I am using the below code to do so:
QLineEdit *q = new QLineEdit;
q->setPlaceholderText("Enter number");
But on executing, the placeholder doe...
Evonevonne asked 9/8, 2017 at 17:21
2
I was goofing around with the ::placeholder pseudoelement on Codepen (Chrome 59.0.3071) when I noticed something odd. (please see my JSFiddle)
In brief, this CSS should not enable a transition of ...
Pruter asked 21/7, 2017 at 20:31
2
If I apply the following rule to an input element with id #one then the placeholder color will change,
#one::-webkit-input-placeholder {
color: red;
}
But if I use comma separater to combine p...
Malacca asked 7/7, 2017 at 12:42
2
Solved
This is very likely a bug, but I'm reporting it here for reference and for the slight chance of someone being able to propose a workaround.
IE 11 supports the placeholder attribute natively on tex...
Reverberatory asked 29/4, 2014 at 21:2
2
Solved
Reading an article about HTML5, it occurs to me that while placeholders are incredibly useful in form usability, if they can not be targeted with CSS without javascript, they really are a baby step...
Faustinafaustine asked 1/2, 2011 at 14:43
4
Why Firefox not taking padding for Placeholder text. see example here http://jsfiddle.net/JfrfZ/
How to fix it?
HTML
<form method="get" action="/search" id="search">
<input name="q" ty...
Eichhorn asked 9/1, 2012 at 20:33
17
Solved
HTML5 introduced the placeholder attribute on input elements, which allows to display a greyed-out default text.
Sadly the Internet Explorer, including IE 9 does not support it.
There already are...
Gilberte asked 2/4, 2011 at 8:41
2
Is it possible to have 2 different font sizes in one input placeholder in CSS?
something like this design:
In regular html you can make it with span,:before,&:after and etc.
but in input yo...
Detestation asked 28/12, 2016 at 11:37
© 2022 - 2024 — McMap. All rights reserved.