📜  如何允许在输入元素离子中复制文本 - CSS 代码示例

📅  最后修改于: 2022-03-11 14:47:39.232000             🧑  作者: Mango

代码示例1
Add the following code to your variable.scss file:

* {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}