HTML Dog
跳至导航

CSS 值:百分比

相对大小的度量。百分比的形式是一个 数字 后面跟着 %

百分比可以被 widthheightpaddingmargin 属性,以及 font-size 等属性使用。

示例


.flamsipoops {
    font-size: 200%;
    /* font-size is twice the font-size of the containing box */

    width: 50%;
    /* width is one-half the width of the containing box */
}