| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <rml>
- <head>
- <link type="text/rcss" href="/../Tests/Data/style.rcss" />
- <title>Flex 02 - Various features</title>
- <meta name="Description" content="Testing various flexible box layout features. Should be comparable to the output in a web browser." />
- <style>
- .flex-container {
- display: flex;
- margin: 10dp 20dp;
- background-color: #333;
- max-height: 210dp;
- flex-wrap: wrap-reverse;
- }
- .flex-item {
- width: 50dp;
- margin: 20dp;
- background-color: #eee;
- height: 50dp;
- text-align: center;
- }
- .flex-direction-row {
- flex-direction: row;
- }
- .flex-direction-row-reverse {
- flex-direction: row-reverse;
- }
- .flex-direction-column {
- flex-direction: column;
- }
- .flex-direction-column-reverse {
- flex-direction: column-reverse;
- }
- .absolute {
- margin: 0;
- position: absolute;
- right: 0;
- bottom: 10dp;
- }
- </style>
- </head>
- <body>
- <div class="flex-container flex-direction-row" style="position: relative">
- <div class="flex-item absolute">Abs</div>
- <div class="flex-item" style="margin: 50dp;">1</div>
- <div class="flex-item" style="margin-top: auto">2</div>
- <div class="flex-item" style="margin: auto">3</div>
- </div>
- <div class="flex-container flex-direction-row-reverse" style="height: 200dp; justify-content: space-around;">
- <div class="flex-item">1</div>
- <div class="flex-item" style="margin-bottom: auto;">2</div>
- <div class="flex-item" style="margin-right: 40dp;">3</div>
- </div>
- <div class="flex-container flex-direction-column">
- <div class="flex-item" id="test" style="margin-right: auto">1</div>
- <div class="flex-item">2</div>
- <div class="flex-item">3</div>
- </div>
- <div class="flex-container flex-direction-column-reverse">
- <div class="flex-item">1</div>
- <div class="flex-item">2 LONG_OVERFLOWING_WORD</div>
- <div class="flex-item">3</div>
- </div>
- <handle size_target="#document"/>
- </body>
- </rml>
|