20 lines
422 B
HTML
20 lines
422 B
HTML
<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>
|