summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-text/text-align/text-align-last-start.html
blob: af5b49dd9661647d8bda617530c55f371a5dad87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html>
 <head>
  <title>text-align-last: start</title>
  <meta charset="utf-8">
  <link rel="help" href="https://drafts.csswg.org/css-text-3/#text-align-last-property">
  <link rel="match" href="text-align-last-start-ref.html">
  <style>
   p {
     text-align: end;
     text-align-last: start;
   }
  </style>
 </head>
 <body>
 <p>Lorem ipsum</p>
 <p dir="rtl">אמר המחבר</p>
 </body>
</html>