# Describing the UI Dioxus is a _declarative_ framework. This means that instead of telling Dioxus what to do (e.g. to "create an element" or "set the color to red") we simply _declare_ what we want the UI to look like using RSX. You have already seen a simple example of RSX syntax in the "hello world" application: ```rust, no_run {{#include ../../../examples/hello_world_desktop.rs:component}} ``` Here, we use the `rsx!` macro to _declare_ that we want a `div` element, containing the text `"Hello, world!"`. Dioxus takes the RSX and constructs a UI from it. ## RSX Features RSX is very similar to HTML in that it describes elements with attributes and children. Here's an empty `div` element in RSX, as well as the resulting HTML: ```rust, no_run {{#include ../../../examples/rsx_overview.rs:empty}} ``` ```html
``` ### Attributes Attributes (and [listeners](../interactivity/index.md)) modify the behavior or appearance of the element they are attached to. They are specified inside the `{}` brackets, using the `name: value` syntax. You can provide the value as a literal in the RSX: ```rust, no_run {{#include ../../../examples/rsx_overview.rs:attributes}} ``` ```html ``` > Note: All attributes defined in `dioxus-html` follow the snake_case naming convention. They transform their `snake_case` names to HTML's `camelCase` attributes. > Note: Styles can be used directly outside of the `style:` attribute. In the above example, `color: "red"` is turned into `style="color: red"`. #### Custom Attributes Dioxus has a pre-configured set of attributes that you can use. RSX is validated at compile time to make sure you didn't specify an invalid attribute. If you want to override this behavior with a custom attribute name, specify the attribute in quotes: ```rust, no_run {{#include ../../../examples/rsx_overview.rs:custom_attributes}} ``` ```html ``` ### Interpolation Similarly to how you can [format](https://doc.rust-lang.org/rust-by-example/hello/print/fmt.html) Rust strings, you can also interpolate in RSX text. Use `{variable}` to Display the value of a variable in a string, or `{variable:?}` to use the Debug representation: ```rust, no_run {{#include ../../../examples/rsx_overview.rs:formatting}} ``` ```htmlFirst Item
Second Item
``` ### Expressions You can include arbitrary Rust expressions as children within RSX that implements [IntoDynNode](https://docs.rs/dioxus-core/0.3/dioxus_core/trait.IntoDynNode.html). This is useful for displaying data from an [iterator](https://doc.rust-lang.org/stable/book/ch13-02-iterators.html#processing-a-series-of-items-with-iterators): ```rust, no_run {{#include ../../../examples/rsx_overview.rs:expression}} ``` ```html DIOXUS0123456789 ``` ### Loops In addition to iterators you can also use for loops directly within RSX: ```rust, no_run {{#include ../../../examples/rsx_overview.rs:loops}} ``` ```html