宽度(widht)

    CSSValueExample
    width数值,如15pxstyle=”width: 15px”

    高度(height)

    CSSValueExample
    height数值,如15px,特别注意⚠️:如模板使用,该样式只能放置在 tr 上style=”height: 15px”

    背景色(background)

    CSSValueExample
    background-color十六进制:#FFFFFF、RGB:rgb(0,255,255)、常用背景色名称:green,推荐使用十六进制style=”background-color:#ABFF00”

    边框(border)

    CSSValueExample
    border-stylethin、dashed、medium、dotted、thick、double、hair、medium_dashed、dash_dotstyle=”border-style:thin”
    border-top-stylethin、dashed、medium、dotted、thick、double、hair、medium_dashed、dash_dotstyle=”border-top-style:thin”
    border-right-stylethin、dashed、medium、dotted、thick、double、hair、medium_dashed、dash_dotstyle=”border-top-style:thin”
    border-bottom-stylethin、dashed、medium、dotted、thick、double、hair、medium_dashed、dash_dotstyle=”border-top-style:thin”
    border-left-stylethin、dashed、medium、dotted、thick、double、hair、medium_dashed、dash_dotstyle=”border-top-style:thin”

    字体(font)

    CSSValueExample
    colorgreenstyle=”color:green;”
    font-size数值:14px(只会截取数值,非数值部分会被删除)style=”font-size:14px”
    font-familyTimes New Roman(不支持备选字体)style=”font-family:Times New Roman”
    font-styleitalicstyle=”font-style:italic”
    font-weightboldstyle=”font-weight:bold”
    text-decorationline-through、underlinestyle=”text-decoration: underline”

    对齐方式(align)

    CSSValueExample
    text-aligngeneral,left,center,right,fill,justify,center_selection,distributedstyle=”text-align:center”
    vertical-aligntop,center,bottom,justify,distributedstyle=”vertical-align:center”

    隐藏(visibility)

    CSSValueExample
    visibilityhidden:隐藏,目前仅设置在tr上生效< tr style=”visibility: hidden” >

    自动换行(word-break)

    CSSValueExample
    word-breakbreak-all:自动换行< tr style=”word-break: break-all” >、< td style=”word-break: break-all” >