Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<style>
math {
display: inline-block;
}
math::first-letter {
background-color: blue;
}
</style>
<math>
<mo id="mo">%</mo>
</math>
<script>
mo.appendChild(document.createTextNode("A"));
document.body.innerText += "";
</script>