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);
工作演示