blob: a97734b15ba02290eed04f7044e8d98926f223bd (
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>
[bar]::-moz-placeholder,
[foo]::placeholder {
display: inline;
}
</style>
<body>
<input placeholder='foo'>
<input placeholder='bar'>
</body>
</html>
|