blob: d71af94d526c4a454cf238be2c09137893efe44e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<!DOCTYPE html>
<html>
<link rel='stylesheet' type='text/css' href='style.css'>
<style>
[placeholder="bar"]::-moz-placeholder,
[placeholder="foo"]::placeholder {
text-align: center;
}
</style>
<body>
<input placeholder='foo'>
<input placeholder='bar'>
</body>
</html>
|