Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
フィードバックを記入するためのフォームが phonegap にあります。以下に示すように、ユーザーにテキスト入力を入力してもらいたいです。(input type="text")透明なテキストボックスが画像にある必要があります。出来ますか?
(input type="text")
ここに可能な解決策があります
CSS
body { background-image:'path-to-image'; } input { background:transparent }
HTML
.... <body> <input type='text' placeholder='my text'/> </body> .....
お役に立てば幸いです。