Need help upgrading to Ionic Framework 4.0? Get assistance with our Enterprise Migration Services EXPLORE NOW

CSS Utilities

Improve this doc

Ionic provides a set of utility attributes that can be used on any element in order to modify the text or adjust the padding or margin.

Text Modification

Text Alignment

Attribute Style Rule Description
text-left text-align: left The inline contents are aligned to the left edge of the line box.
text-right text-align: right The inline contents are aligned to the right edge of the line box.
text-start text-align: start The same as text-left if direction is left-to-right and text-right if direction is right-to-left.
text-end text-align: end The same as text-right if direction is left-to-right and text-left if direction is right-to-left.
text-center text-align: center The inline contents are centered within the line box.
text-justify text-align: justify The inline contents are justified. Text should be spaced to line up its left and right edges to the left and right edges of the line box, except for the last line.
text-wrap white-space: normal Sequences of whitespace are collapsed. Newline characters in the source are handled as other whitespace. Breaks lines as necessary to fill line boxes.
text-nowrap white-space: nowrap Collapses whitespace as for normal, but suppresses line breaks (text wrapping) within text.
text-left
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ac vehicula lorem.
text-right
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ac vehicula lorem.
text-center
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ac vehicula lorem.
text-justify
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ac vehicula lorem.
text-wrap
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ac vehicula lorem.
text-nowrap
Lorem ipsum dolor sit amet, consectetur adipiscing elit.

Note: the example above is shown with custom styling.

<div text-left>
  text-left
  Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ac vehicula lorem.
</div>
<div text-right>
  text-right
  Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ac vehicula lorem.
</div>
<div text-center>
  text-center
  Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ac vehicula lorem.
</div>
<div text-justify>
  text-justify
  Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ac vehicula lorem.
</div>
<div text-wrap>
  text-wrap
  Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ac vehicula lorem.
</div>
<div text-nowrap>
  text-nowrap
  Lorem ipsum dolor sit amet, consectetur adipiscing elit.
</div>

Text Transformation

Attribute Style Rule Description
text-uppercase text-transform: uppercase Forces all characters to be converted to uppercase.
text-lowercase text-transform: lowercase Forces all characters to be converted to lowercase.
text-capitalize text-transform: capitalize Forces the first letter of each word to be converted to uppercase.
text-uppercase
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ac vehicula lorem.
text-lowercase
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ac vehicula lorem.
text-capitalize
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ac vehicula lorem.

Note: the example above is shown with custom styling.

<div text-uppercase>
  text-uppercase
  Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ac vehicula lorem.
</div>
<div text-lowercase>
  text-lowercase
  Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ac vehicula lorem.
</div>
<div text-capitalize>
  text-capitalize
  Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ac vehicula lorem.
</div>

Responsive Text Attributes

All of the text attributes listed above have additional attributes to modify the text based on the screen size. Instead of text- in each attribute, use text-{breakpoint}- to only use the attribute on specific screen sizes, where {breakpoint} is one of the defined breakpoints in the $screen-breakpoints variable. The table below shows the default behavior, where {modifier} is any of the following: left, right, start, end, center, justify, wrap, nowrap, uppercase, lowercase, or capitalize, as they are described above.

Attribute Description
text-{modifier} Applies the modifier to the element on all screen sizes.
text-sm-{modifier} Applies the modifier to the element when min-width: 576px.
text-md-{modifier} Applies the modifier to the element when min-width: 768px.
text-lg-{modifier} Applies the modifier to the element when min-width: 992px.
text-xl-{modifier} Applies the modifier to the element when min-width: 1200px.

Element Placement

Float Elements

The float CSS property specifies that an element should be placed along the left or right side of its container, where text and inline elements will wrap around it. This way, the element is taken from the normal flow of the web page, though still remaining a part of the flow, contrary to absolute positioning.

Attribute Style Rule Description
float-left float: left The element will float on the left side of its containing block.
float-right float: right The element will float on the right side of its containing block.
float-start float: left | float: right The same as float-left if direction is left-to-right and float-right if direction is right-to-left.
float-end float: left | float: right The same as float-right if direction is left-to-right and float-left if direction is right-to-left.
float-left
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ac vehicula lorem.
float-right
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ac vehicula lorem.

Note: the example above is shown with custom styling.

<div float-left>
  <b>float-left</b><br>
  Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ac vehicula lorem.
</div>
<div float-right>
  <b>float-right</b><br>
  Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ac vehicula lorem.
</div>

Responsive Float Attributes

All of the float attributes listed above have additional attributes to modify the float based on the screen size. Instead of float- in each attribute, use float-{breakpoint}- to only use the attribute on specific screen sizes, where {breakpoint} is one of the defined breakpoints in the $screen-breakpoints variable. The table below shows the default behavior, where {modifier} is any of the following: left, right, start, or end, as they are described above.

Attribute Description
float-{modifier} Applies the modifier to the element on all screen sizes.
float-sm-{modifier} Applies the modifier to the element when min-width: 576px.
float-md-{modifier} Applies the modifier to the element when min-width: 768px.
float-lg-{modifier} Applies the modifier to the element when min-width: 992px.
float-xl-{modifier} Applies the modifier to the element when min-width: 1200px.

Content Space

Element Padding

The padding attribute sets the padding area of an element. The padding area is the space between the content of the element and its border.

The default amount of padding to be applied is set by the $content-padding variable to 16px. Each mode can have a different value for padding by setting $content-ios-padding, $content-md-padding, or $content-wp-padding. See the overriding ionic variables section to change this value.

Attribute Style Rule Description
padding padding: 16px Applies padding to all sides.
padding-top padding-top: 16px Applies padding to the top.
padding-left padding-left: 16px Applies padding to the left.
padding-right padding-right: 16px Applies padding to the right.
padding-bottom padding-bottom: 16px Applies padding to the bottom.
padding-vertical padding: 16px 0 Applies padding to the top and botttom.
padding-horizontal padding: 0 16px Applies padding to the left and right.
no-padding padding: 0 Applies no padding to all sides.
padding padding-top padding-left padding-right padding-bottom padding-vertical padding-horizontal no-padding

Note: the example above is shown with custom styling to show the padding that gets applied in green.

<div padding>
  padding
</div>
<div padding-top>
  padding-top
</div>
<div padding-left>
  padding-left
</div>
<div padding-right>
  padding-right
</div>
<div padding-bottom>
  padding-bottom
</div>
<div padding-vertical>
  padding-vertical
</div>
<div padding-horizontal>
  padding-horizontal
</div>
<div no-padding>
  no-padding
</div>

Element Margin

The margin area extends the border area with an empty area used to separate the element from its neighbors.

The default amount of margin to be applied is set by the $content-margin variable to 16px. Each mode can have a different value for margin by setting $content-ios-margin, $content-md-margin, or $content-wp-margin. See the overriding ionic variables section to change this value.

Attribute Style Rule Description
margin margin: 16px Applies margin to all sides.
margin-top margin-top: 16px Applies margin to the top.
margin-left margin-left: 16px Applies margin to the left.
margin-right margin-right: 16px Applies margin to the right.
margin-bottom margin-bottom: 16px Applies margin to the bottom.
margin-vertical margin: 16px 0 Applies margin to the top and botttom.
margin-horizontal margin: 0 16px Applies margin to the left and right.
no-margin margin: 0 Applies no margin to all sides.
margin
margin-top
margin-left
margin-right
margin-bottom
margin-vertical
margin-horizontal
no-margin

Note: the example above is shown with custom styling to show the margin that gets applied in orange.

<div margin>
  margin
</div>
<div margin-top>
  margin-top
</div>
<div margin-left>
  margin-left
</div>
<div margin-right>
  margin-right
</div>
<div margin-bottom>
  margin-bottom
</div>
<div margin-vertical>
  margin-vertical
</div>
<div margin-horizontal>
  margin-horizontal
</div>
<div no-margin>
  no-margin
</div>

Setting Attributes Dynamically

By setting a CSS attribute dynamically, you can add or remove functionality from a component based on a certain condition. To set an attribute dynamically, use the following syntax:

<div [attr.text-center]="isMD ? '' : null">I will be centered when isMD is true.</div>

This will set the text-center attribute on the div if isMD evaluates to true. Otherwise, the attribute will not be added.

API

Native

General