pub trait TableDataCellComponentPropsBuilder: AsMut<AnyJsStaticProps> + HtmlTableCellSharedPropsBuilder<HtmlTableCellElement> + HtmlCommonSharedPropsBuilder<HtmlTableCellElement> {
    fn height<'a, T>(self, v: Option<T>) -> Self
    where
        T: Into<NumOrStr<'a>>
, { ... }
fn width<'a, T>(self, v: Option<T>) -> Self
    where
        T: Into<NumOrStr<'a>>
, { ... }
fn valign(self, v: Option<TableCellVAlign>) -> Self { ... } }

Provided methods

Implementors