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