Summary: Pull Request resolved: https://github.com/facebook/yoga/pull/1616 This is based on a few comments earlier in the stack and my own discretion on what should change. But I went through all of the examples and changed the following: * Only add code tick marks in a few cases where it would make sense. Things like `start` and `end`, `undefined` as a value, etc. There ends up not being that many after this. Previously, any property or value was tick marked even if it was more of a concept than actual code. **I replaced those cases with a link to their respective documentation as I feel like this keeps the indication that this is a keyword without labeling it as code**. * Any reference to "element" was changed to "node" * Capitalize words that follow a colon * Run code examples through prettier for consistent style Reviewed By: yungsters Differential Revision: D54816609 fbshipit-source-id: 20ee925cf46bd1c519cc88bab9327321e926ac56
42 lines
1.3 KiB
Plaintext
42 lines
1.3 KiB
Plaintext
---
|
|
sidebar_position: 11
|
|
---
|
|
|
|
import Playground from '@site/src/components/Playground';
|
|
|
|
# Margin, Padding, and Border
|
|
|
|
**Margin**: Affects the spacing around the outside of a node. A node with margin
|
|
will offset itself from the bounds of its parent but also offset the
|
|
location of any siblings. The margin of a node contributes to the total size
|
|
of its parent if the parent is auto sized.
|
|
|
|
**Padding**: Affects the size of the node it is applied to. Padding in Yoga acts as if
|
|
`box-sizing: border-box;` was set. That is padding will not add to the total size
|
|
of an element if it has an explicit size set. For auto sized nodes padding will increase
|
|
the size of the node as well as offset the location of any children.
|
|
|
|
**Border**: in Yoga acts exactly like padding and only exists as a seperate property so
|
|
that higher level frameworks get a hint as to how thick to draw a border. Yoga however
|
|
does not do any drawing so just uses this information during layout where border
|
|
acts exactly like padding.
|
|
|
|
<Playground code={`<Layout config={{useWebDefaults: false}}>
|
|
<Node
|
|
style={{
|
|
width: 200,
|
|
height: 200,
|
|
padding: 10,
|
|
}}>
|
|
<Node
|
|
style={{
|
|
margin: 5,
|
|
padding: 20,
|
|
borderWidth: 20,
|
|
height: 50,
|
|
}}
|
|
/>
|
|
<Node style={{height: 50}} />
|
|
</Node>
|
|
</Layout>`} />
|