1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16

content / test / data / accessibility / css / text-overflow-ellipsis.html [blame]

<style>
  div {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 400px;
  }

  div, span {
    outline: 1px solid;
    font-size: 40px;
    font-family: monospace;
  }
</style>

<div><span>SPAN NESTED INSIDE DIV</span> CONTAINER DIV</div>