[][src]Macro subscript::s1

macro_rules! s1 {
    ($($x:tt)*) => { ... };
}

Style list maco.

let ss: StyleList = s1!{
    display: "flex";
};

Syntax:

property_name: "value";

In contrast to the view macro (v1!{…}), this only supports css-properties.

Technically this should be s0.