首页htmldirectionCSS Property Value - 如何direction:ltr;

CSS Property Value - 如何direction:ltr;

我们想知道如何direction:ltr;

<html>
<head>
<style>
    .ltr {direction:ltr; }
    .rtl {direction:rtl; }
</style>
</head>

<body>
<h1>direction</h1>
<p class="ltr">This text should flow left to right.</p>
<p class="rtl">This text should flow right to left.</p>
</body>
</html>