Align
Mostly used for centering and some assume a flex parent.
.l-align-center-x
Uses auto side margin for horizontal center
<div style="border:2px solid black; width: 200px; height: 100px; position: relative; " >
<div style="width: 50%;" class="has-padding has-bg-yellow l-align-center-x">Example</div>
</div>
Repo | Count | Location(s) |
---|---|---|
data-visuals-create | 1 | |
feature-general-ballot-2020-08 | 1 | |
feature-voter-guide-general-2020-08 | 1 | |
donations | 4 | |
texastribune | 15 | |
state-salaries-draft | 1 | |
docker-tt-nginx | 2 | |
smaragdine-september | 1 |
.l-align-center-y
Absolutely positioned for vertical vertical center
<div style="border:2px solid black; width: 200px; height: 100px; position: relative; " >
<div style="width: 50%;" class="has-padding has-bg-yellow l-align-center-y">Example</div>
</div>
Parent is position: relative
Repo | Count | Location(s) |
---|---|---|
donations | 2 | |
texastribune | 1 |
.l-align-center-self
Used on children of flex or grid parent for vertical center
<div style="border:2px solid black; width: 200px; height: 100px; position: relative; display: flex" >
<div style="width: 50%;" class="has-padding has-bg-yellow l-align-center-self">Example</div>
</div>
Parent is display: flex
Repo | Count | Location(s) |
---|---|---|
state-salaries-draft | 5 | |
texastribune | 8 | |
donations | 5 | |
docker-tt-nginx | 2 | |
smaragdine-september | 1 |
.l-align-end-self
Used on children of flex or grid parent for forcing bottom alignment
<div style="border:2px solid black; width: 200px; height: 100px; position: relative; display: flex" >
<div style="width: 50%;" class="has-padding has-bg-yellow l-align-end-self">Example</div>
</div>
Parent is display: flex
Repo | Count | Location(s) |
---|---|---|
texastribune | 4 | |
state-salaries-draft | 1 |
.l-align-center-children
Apply to parent to center children. Centers x and y.
<div style="border:2px solid black; width: 200px; height: 100px; position: relative; " class="l-align-center-children">
<div style="width: 50%;" class="has-padding has-bg-yellow l-align-center-children">Example</div>
</div>
Repo | Count | Location(s) |
---|---|---|
data-visuals-create | 2 | |
feature-general-ballot-2020-08 | 2 | |
feature-voter-guide-general-2020-08 | 2 | |
texastribune | 15 | |
donations | 1 | |
state-salaries-draft | 1 |