CSS classes and styling
Learn how to style elements, components and other facets of an Aurelia application using classes and CSS. Strategies for different approaches are discussed in this section.
Last updated
Learn how to style elements, components and other facets of an Aurelia application using classes and CSS. Strategies for different approaches are discussed in this section.
Last updated
Aurelia makes it easy to modify an element inline class list and styles. You can work with not only strings but also objects to manipulate elements.
The class binding allows you to bind one or more classes to an element and its native class
attribute.
Adding or removing a single class value from an element can be done using the .class
binding. By prefixing the .class
binding with the name of the class you want to display conditionally selected.class="myBool"
you can add a selected class to an element. The value you pass into this binding is a boolean value (either true or false), if it is true
the class will be added; otherwise, it will be removed.
Inside of your view model, you would specify isSelected
as a property and depending on the value, the class would be added or removed.
Here is a working example of a boolean value being toggled using .class
bindings.
Unlike singular class binding, you cannot use the .class
binding syntax to conditionally bind multiple CSS classes. However, there is a multitude of different ways in which this can be achieved.
class.bind="someString"
string
'col-md-4 bg-${bgColor}'
class="${someString}"
string
col-md-4 ${someString}
Once you have your CSS imported and ready to use in your components, there might be instances where you want to dynamically bind to the style attribute on an element (think setting dynamic widths or backgrounds).
You can dynamically add a CSS style value to an element using the .style
binding in Aurelia.
Inside of your view model, you would specify bg
as a string value on your class.
Here is a working example of a style binding setting the background colour to blue:
To bind to one or more CSS style properties you can either use a string containing your style values (including dynamic values) or an object containing styles.
This is what a style string looks like, notice the interpolation here? It almost resembles just a plain native style attribute, with exception of the interpolation for certain values. Notice how you can also mix normal styles with interpolation as well?
You can also bind a string from your view model to the style
property instead of inline string assignment by using style.bind="myString"
where myString
is a string of styles inside of your view model.
Styles can be passed into an element by binding to the styles property and using .bind
to pass in an object of style properties. We can rewrite the above example to use style objects.
From a styling perspective, both examples above do the same thing. However, we are passing in an object and binding it to the style
property instead of a string.