HTML/CSS/CSS Attributes and Javascript Style Properties/layout flow
Версия от 09:20, 26 мая 2010; (обсуждение)
"layout-flow" Example
<html>
<body>
<p id="myP">This text has a regular horizontal flow</p>
<button onclick="myP.style.layoutFlow="vertical-ideographic";
myP.innerText="This text has a vertical-ideographic flow"">
Set layoutFlow to vertical-ideographic
</button>
</body>
</html>