deft-yoga 0.7.1

Rust bindings for Facebook's Yoga, a Flexbox layout engine
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<div id="nested_overflowing_child" style="height: 100px; width: 100px;">
  <div>
    <div style="height: 200px; width: 200px;"></div>
  </div>
</div>

<div id="nested_overflowing_child_in_constraint_parent" style="height: 100px; width: 100px;">
  <div style="height: 100px; width: 100px;">
    <div style="height: 200px; width: 200px;"></div>
  </div>
</div>

<div id="parent_wrap_child_size_overflowing_parent" style="width: 100px; height: 100px;">
  <div style="width: 100px;">
    <div style="width: 100px; height: 200px;"></div>
  </div>
</div>