Created
November 13, 2018 09:59
-
-
Save simpluslabs/f81fa650c09632e215f2c2e24e3ee8ef to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<aura:component> | |
<h1 class="slds-page-header slds-page-header__title">HorizontalAlignment </h1> | |
<div class="c-container"> | |
<br/> | |
<lightning:layout horizontalAlign="space"> | |
<lightning:layoutItem > | |
<div class="custom-box">1</div> | |
</lightning:layoutItem> | |
<lightning:layoutItem > | |
<div class="custom-box">2</div> | |
</lightning:layoutItem> | |
<lightning:layoutItem > | |
<div class="custom-box">3</div> | |
</lightning:layoutItem> | |
<lightning:layoutItem > | |
<div class="custom-box">4</div> | |
</lightning:layoutItem> | |
</lightning:layout> | |
<br/> | |
<hr/> | |
<br/> | |
<lightning:layout horizontalAlign="spread"> | |
<lightning:layoutItem > | |
<div class="custom-box">1</div> | |
</lightning:layoutItem> | |
<lightning:layoutItem > | |
<div class="custom-box">2</div> | |
</lightning:layoutItem> | |
<lightning:layoutItem> | |
<div class="custom-box">3</div> | |
</lightning:layoutItem> | |
<lightning:layoutItem > | |
<div class="custom-box">4</div> | |
</lightning:layoutItem> | |
</lightning:layout> | |
<br/> | |
<hr/> | |
<br/> | |
<lightning:layout horizontalAlign="center"> | |
<lightning:layoutItem > | |
<div class="custom-box">1</div> | |
</lightning:layoutItem> | |
<lightning:layoutItem > | |
<div class="custom-box">2</div> | |
</lightning:layoutItem> | |
<lightning:layoutItem> | |
<div class="custom-box">3</div> | |
</lightning:layoutItem> | |
<lightning:layoutItem > | |
<div class="custom-box">4</div> | |
</lightning:layoutItem> | |
</lightning:layout> | |
<br/> | |
<hr/> | |
<br/> | |
<lightning:layout horizontalAlign="end"> | |
<lightning:layoutItem > | |
<div class="custom-box">1</div> | |
</lightning:layoutItem> | |
<lightning:layoutItem > | |
<div class="custom-box">2</div> | |
</lightning:layoutItem> | |
<lightning:layoutItem> | |
<div class="custom-box">3</div> | |
</lightning:layoutItem> | |
<lightning:layoutItem > | |
<div class="custom-box">4</div> | |
</lightning:layoutItem> | |
</lightning:layout> | |
<br/> | |
</div> | |
</aura:component> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment