1 <!DOCTYPE html>
2 <html><head><meta charset="utf-8">
3 <title>CSS Text Test: text-align - start (basic)</title>
4 <link href="http://www.intel.com" rel="author" title="Intel">
5 <link href="mailto:shiyoux.tan@intel.com" rel="author" title="Shiyou Tan">
6 <link href="http://www.w3.org/TR/css-text-3/#text-align" rel="help" title="7.1. Text Alignment: the 'text-align' property">
7 <link href="reference/text-align-006-ref.htm" rel="match">
8 <meta content="" name="flags">
9 <meta content="The 'text-align' property set to 'start' on a block element aligns the text to the start edge." name="assert">
10 <style>
11 div {
12 border: 1px solid blue;
13 text-align: start;
14 }
15 </style>
16 </head><body>
17 <p>Test passes if the words "Filler Text" below are aligned to the left, inside the blue box.</p>
18 <div>Filler Text</div>
19
20 </body></html>