SCSS:如何在屏幕底部放置屏幕键盘?
SCSS: How to place an On-Screen-Keyboard on bottom of screen?
我有一个屏幕键盘。我想把它放在屏幕底部这样
当我们点击一个文本编辑器时,键盘出现在屏幕的按钮中。 当前帧的按钮是我的目的
我有以下代码,但它不起作用。
.ui-keyboard {
border-radius: 0;
left: 0;
position: absolute;
bottom: 5%;
width: 80%;
}
我解决了:
top: auto;
bottom: 16rem;
position: fixed;
我有一个屏幕键盘。我想把它放在屏幕底部这样 当我们点击一个文本编辑器时,键盘出现在屏幕的按钮中。 当前帧的按钮是我的目的 我有以下代码,但它不起作用。
.ui-keyboard {
border-radius: 0;
left: 0;
position: absolute;
bottom: 5%;
width: 80%;
}
我解决了:
top: auto;
bottom: 16rem;
position: fixed;