-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpolicy.html
31 lines (25 loc) · 1.04 KB
/
policy.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
display: grid;
place-items: center;
}
.tap-target {
width: 300px;
height: 100px;
border: 1px solid #ccc;
border-radius: 10px;
background-color: #eee;
margin: 10px;
font-family: sans-serif;
display: grid;
place-items: center;
outline: none;
}
</style>
<div class="tap-target">not editable</div>
<div class="tap-target" virtualkeyboardpolicy="auto" contenteditable spellcheck="false">editable, virtualkeyboardpolicy=auto</div>
<div class="tap-target" virtualkeyboardpolicy="manual" contenteditable spellcheck="false">editable, virtualkeyboardpolicy=manual</div>
<div class="tap-target" inputmode="none" contenteditable spellcheck="false">editable, inputmode=none</div>
<div class="tap-target" inputmode="numeric" virtualkeyboardpolicy="manual" contenteditable spellcheck="false">editable, inputmode=numeric, <br>virtualkeyboardpolicy=manual</div>