blob: b08a4118356b0cf49c9d3778c986aa3b3ace9f45 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<style>
#x {
-webkit-user-select: none;
word-break: break-word;
width: 0vh;
-webkit-perspective: 89px;
display: flex;
height: 1ch;
}
</style>
<script>
window.onload = () => {
document.execCommand("selectAll");
document.execCommand("selectAll");
document.execCommand("backColor", false, "r");
document.execCommand("superscript");
}
</script>
<dl style="columns:1px">
<dt id="x" contenteditable>aaa</dt>
|