pub trait StyleAttribute<S>where
S: IntoStyle,{
type Output;
// Required method
fn style(self, value: S) -> Self::Output;
}Expand description
Adds an attribute that modifies the CSS styles.
pub trait StyleAttribute<S>where
S: IntoStyle,{
type Output;
// Required method
fn style(self, value: S) -> Self::Output;
}Adds an attribute that modifies the CSS styles.