Source code
Revision control
Copy as Markdown
Other Tools
<box id="a" style="display: list-item;">
&m&m
<box id="b"/>
</box>
#a::first-letter {float: right; }
</style>
function doe() {↩
document.getElementById('a').style.direction = 'rtl';↩
document.getElementById('b').style.direction = 'ltr';↩
}↩
setTimeout(doe, 100);
</script>
</window>