Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="writing-mode in HTML/SVG">
<style>
  .tb {
    writing-mode:tb;
  }
  .vrl {
    writing-mode:vertical-rl;
    -webkit-writing-mode:vertical-rl;
  }
  </style>
  </head>
<body>
  <p class=vrl style="border:solid red">HTML
    <svg xmlns="http://www.w3.org/2000/svg" version="1.1">
      <text y="50">SVG</text>
    </svg>
  <p style="border:solid blue">HTML
    <svg xmlns="http://www.w3.org/2000/svg" version="1.1">
      <text class="vrl" y="50">SVG</text>
    </svg>
  <p class="tb" style="border:solid green">HTML
    <svg xmlns="http://www.w3.org/2000/svg" version="1.1">
      <text y="50">SVG</text>
    </svg>
  <p style="border:solid">HTML
    <svg xmlns="http://www.w3.org/2000/svg" version="1.1">
      <text class="tb" y="50">SVG</text>
    </svg>
  <p writing-mode="tb" style="border:solid green">HTML
    <svg xmlns="http://www.w3.org/2000/svg" version="1.1">
      <text y="50">SVG</text>
    </svg>
  <p style="border:solid">HTML
    <svg xmlns="http://www.w3.org/2000/svg" version="1.1">
      <text writing-mode="tb" y="50">SVG</text>
    </svg>
</body>
</html>
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
kojiishipro
0viewers