Getting Started
Layout
Components
Design
Text
Use our text classes to quickly adjust text:
Class Name | Description |
---|---|
.null-text-align-center
|
text will be on center. |
.null-text-align-start
|
text will be on left in LTR direction and will be on right in RTL direction. |
.null-text-align-end
|
text will be on right in LTR direction and will be on left in RTL direction. |
.null-text-align-justify
|
Justify text. |
.null-text-transform-capitalize
|
Capitalize text. |
.null-text-transform-lowercase
|
Lowercase text. |
.null-text-transform-uppercase
|
Uppercase text. |
.null-font-weight-bold
|
Add bold to text. |
.null-font-style-italic
|
Add italic style to text. |
.null-text-decoration-underline
|
Add underline to text. |
.null-text-decoration-line-through
|
Add line through to text. |
Examples:
Font bold
<div class="null-font-weight-bold">Font bold</div>
This is italic style
<div class="null-font-style-italic">This is italic style</div>
Text will be on left in LTR direction and will be on right in RTL direction.
<div class="null-text-align-start">Text will be on left in LTR direction and will be on right in RTL direction.</div>