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.
我想在这个应用程序中用 Ionic 构建一个 Web 应用程序,在 textaera 中有一个表单
作为 iPhone 上的记事本,我希望 textaera 与所用设备的大小相同
非常感谢
您可以使用 CSS 实现它:
textarea { resize: none; width:100vw; height:100vh; }
在这里,您将宽度设置textarea为100vw(视口宽度)和高度100vh(视口高度)。这将textarea自动调整到设备的宽度和高度。
textarea
100vw
100vh