📄 css2properties.java
字号:
/** * See the font property definition in CSS2. */ public String getFont(); /** * See the font property definition in CSS2. * @exception DOMException * SYNTAX_ERR: Raised if the new value has a syntax error and is * unparsable. * <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly. */ public void setFont(String font) throws DOMException; /** * See the font-family property definition in CSS2. */ public String getFontFamily(); /** * See the font-family property definition in CSS2. * @exception DOMException * SYNTAX_ERR: Raised if the new value has a syntax error and is * unparsable. * <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly. */ public void setFontFamily(String fontFamily) throws DOMException; /** * See the font-size property definition in CSS2. */ public String getFontSize(); /** * See the font-size property definition in CSS2. * @exception DOMException * SYNTAX_ERR: Raised if the new value has a syntax error and is * unparsable. * <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly. */ public void setFontSize(String fontSize) throws DOMException; /** * See the font-size-adjust property definition in CSS2. */ public String getFontSizeAdjust(); /** * See the font-size-adjust property definition in CSS2. * @exception DOMException * SYNTAX_ERR: Raised if the new value has a syntax error and is * unparsable. * <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly. */ public void setFontSizeAdjust(String fontSizeAdjust) throws DOMException; /** * See the font-stretch property definition in CSS2. */ public String getFontStretch(); /** * See the font-stretch property definition in CSS2. * @exception DOMException * SYNTAX_ERR: Raised if the new value has a syntax error and is * unparsable. * <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly. */ public void setFontStretch(String fontStretch) throws DOMException; /** * See the font-style property definition in CSS2. */ public String getFontStyle(); /** * See the font-style property definition in CSS2. * @exception DOMException * SYNTAX_ERR: Raised if the new value has a syntax error and is * unparsable. * <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly. */ public void setFontStyle(String fontStyle) throws DOMException; /** * See the font-variant property definition in CSS2. */ public String getFontVariant(); /** * See the font-variant property definition in CSS2. * @exception DOMException * SYNTAX_ERR: Raised if the new value has a syntax error and is * unparsable. * <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly. */ public void setFontVariant(String fontVariant) throws DOMException; /** * See the font-weight property definition in CSS2. */ public String getFontWeight(); /** * See the font-weight property definition in CSS2. * @exception DOMException * SYNTAX_ERR: Raised if the new value has a syntax error and is * unparsable. * <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly. */ public void setFontWeight(String fontWeight) throws DOMException; /** * See the height property definition in CSS2. */ public String getHeight(); /** * See the height property definition in CSS2. * @exception DOMException * SYNTAX_ERR: Raised if the new value has a syntax error and is * unparsable. * <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly. */ public void setHeight(String height) throws DOMException; /** * See the left property definition in CSS2. */ public String getLeft(); /** * See the left property definition in CSS2. * @exception DOMException * SYNTAX_ERR: Raised if the new value has a syntax error and is * unparsable. * <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly. */ public void setLeft(String left) throws DOMException; /** * See the letter-spacing property definition in CSS2. */ public String getLetterSpacing(); /** * See the letter-spacing property definition in CSS2. * @exception DOMException * SYNTAX_ERR: Raised if the new value has a syntax error and is * unparsable. * <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly. */ public void setLetterSpacing(String letterSpacing) throws DOMException; /** * See the line-height property definition in CSS2. */ public String getLineHeight(); /** * See the line-height property definition in CSS2. * @exception DOMException * SYNTAX_ERR: Raised if the new value has a syntax error and is * unparsable. * <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly. */ public void setLineHeight(String lineHeight) throws DOMException; /** * See the list-style property definition in CSS2. */ public String getListStyle(); /** * See the list-style property definition in CSS2. * @exception DOMException * SYNTAX_ERR: Raised if the new value has a syntax error and is * unparsable. * <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly. */ public void setListStyle(String listStyle) throws DOMException; /** * See the list-style-image property definition in CSS2. */ public String getListStyleImage(); /** * See the list-style-image property definition in CSS2. * @exception DOMException * SYNTAX_ERR: Raised if the new value has a syntax error and is * unparsable. * <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly. */ public void setListStyleImage(String listStyleImage) throws DOMException; /** * See the list-style-position property definition in CSS2. */ public String getListStylePosition(); /** * See the list-style-position property definition in CSS2. * @exception DOMException * SYNTAX_ERR: Raised if the new value has a syntax error and is * unparsable. * <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly. */ public void setListStylePosition(String listStylePosition) throws DOMException; /** * See the list-style-type property definition in CSS2. */ public String getListStyleType(); /** * See the list-style-type property definition in CSS2. * @exception DOMException * SYNTAX_ERR: Raised if the new value has a syntax error and is * unparsable. * <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly. */ public void setListStyleType(String listStyleType) throws DOMException; /** * See the margin property definition in CSS2. */ public String getMargin(); /** * See the margin property definition in CSS2. * @exception DOMException * SYNTAX_ERR: Raised if the new value has a syntax error and is * unparsable. * <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly. */ public void setMargin(String margin) throws DOMException; /** * See the margin-top property definition in CSS2. */ public String getMarginTop(); /** * See the margin-top property definition in CSS2. * @exception DOMException * SYNTAX_ERR: Raised if the new value has a syntax error and is * unparsable. * <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly. */ public void setMarginTop(String marginTop) throws DOMException; /** * See the margin-right property definition in CSS2. */ public String getMarginRight(); /** * See the margin-right property definition in CSS2. * @exception DOMException * SYNTAX_ERR: Raised if the new value has a syntax error and is * unparsable. * <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly. */ public void setMarginRight(String marginRight) throws DOMException; /** * See the margin-bottom property definition in CSS2. */ public String getMarginBottom(); /** * See the margin-bottom property definition in CSS2. * @exception DOMException * SYNTAX_ERR: Raised if the new value has a syntax error and is * unparsable. * <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly. */ public void setMarginBottom(String marginBottom) throws DOMException; /** * See the margin-left property definition in CSS2. */ public String getMarginLeft(); /** * See the margin-left property definition in CSS2. * @exception DOMException * SYNTAX_ERR: Raised if the new value has a syntax error and is * unparsable. * <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly. */ public void setMarginLeft(String marginLeft) throws DOMException; /** * See the marker-offset property definition in CSS2. */ public String getMarkerOffset(); /** * See the marker-offset property definition in CSS2. * @exception DOMException * SYNTAX_ERR: Raised if the new value has a syntax error and is * unparsable. * <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly. */ public void setMarkerOffset(String markerOffset) throws DOMException; /** * See the marks property definition in CSS2. */ public String getMarks(); /** * See the marks property definition in CSS2. * @exception DOMException * SYNTAX_ERR: Raised if the new value has a syntax error and is * unparsable. * <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly. */ public void setMarks(String marks) throws DOMException; /** * See the max-height property definition in CSS2. */ public String getMaxHeight(); /** * See the max-height property definition in CSS2. * @exception DOMException * SYNTAX_ERR: Raised if the new value has a syntax error and is * unparsable. * <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly. */ public void setMaxHeight(String maxHeight) throws DOMException; /** * See the max-width property definition in CSS2. */ public String getMaxWidth(); /** * See the max-width property definition in CSS2. * @exception DOMException * SYNTAX_ERR: Raised if the new value has a syntax error and is * unparsable. * <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly. */ public void setMaxWidth(String maxWidth) throws DOMException; /** * See the min-height property definition in CSS2. */ public String getMinHeight(); /** * See the min-height property definition in CSS2.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -