Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<style>
div.test {
  font-family: Arial;
  line-height: 1;
  width: 10ch;
  border: 1px solid blue;
}
</style>
<body>
  <div class="test" dir="rtl">
    אאאאאאאא
    MMMMM
  </div>
  <div class="test">
    MMMMM
    אאאאאאאא
  </div>
  <div class="test">
    <div>a</div>
    <div dir="rtl">
      אאאאאאאא
      MMMMM
    </div>
  </div>
  <div class="test">
    <div>a</div>
    <div>
      MMMMM
      אאאאאאאא
    </div>
  </div>
  <div class="test">
    <div dir="rtl">א</div>
    <div dir="rtl">
      אאאאאאאא
      MMMMM
    </div>
  </div>
  <div class="test">
    <div dir="rtl">א</div>
    <div>
      MMMMM
      אאאאאאאא
    </div>
  </div>
</body>