12 lines
276 B
HTML
12 lines
276 B
HTML
<html>
|
|
<head>
|
|
<script>
|
|
window.addEventListener('load', () => {
|
|
document.designMode = 'on'
|
|
const selection = document.getSelection()
|
|
selection.empty()
|
|
document.queryCommandIndeterm('justifyFull')
|
|
})
|
|
</script>
|
|
</head>
|
|
</html>
|