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.
入力テキストをテキストの幅に拡大または縮小する CSS だけで可能ですか?
これはCSSだけでは不可能です。これにはjQueryを使用する必要があります-
function resizeInput() { $(this).attr('size', $(this).val().length+1); } $('input[type="text"]').keyup(resizeInput).each(resizeInput);
ワーキングデモ