📄 css2properties.java
字号:
/** * See the border-bottom-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 String getBorderBottomWidth(); public void setBorderBottomWidth(String borderBottomWidth) throws DOMException; /** * See the border-left-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 String getBorderLeftWidth(); public void setBorderLeftWidth(String borderLeftWidth) throws DOMException; /** * See the border-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 String getBorderWidth(); public void setBorderWidth(String borderWidth) throws DOMException; /** * See the 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 String getBottom(); public void setBottom(String bottom) throws DOMException; /** * See the caption-side 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 String getCaptionSide(); public void setCaptionSide(String captionSide) throws DOMException; /** * See the clear 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 String getClear(); public void setClear(String clear) throws DOMException; /** * See the clip 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 String getClip(); public void setClip(String clip) throws DOMException; /** * See the color 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 String getColor(); public void setColor(String color) throws DOMException; /** * See the content 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 String getContent(); public void setContent(String content) throws DOMException; /** * See the counter-increment 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 String getCounterIncrement(); public void setCounterIncrement(String counterIncrement) throws DOMException; /** * See the counter-reset 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 String getCounterReset(); public void setCounterReset(String counterReset) throws DOMException; /** * See the cue 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 String getCue(); public void setCue(String cue) throws DOMException; /** * See the cue-after 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 String getCueAfter(); public void setCueAfter(String cueAfter) throws DOMException; /** * See the cue-before 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 String getCueBefore(); public void setCueBefore(String cueBefore) throws DOMException; /** * See the cursor 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 String getCursor(); public void setCursor(String cursor) throws DOMException; /** * See the direction 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 String getDirection(); public void setDirection(String direction) throws DOMException; /** * See the display 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 String getDisplay(); public void setDisplay(String display) throws DOMException; /** * See the elevation 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 String getElevation(); public void setElevation(String elevation) throws DOMException; /** * See the empty-cells 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 String getEmptyCells(); public void setEmptyCells(String emptyCells) throws DOMException; /** * See the float 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 String getCssFloat(); public void setCssFloat(String cssFloat) throws DOMException; /** * 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 String getFont(); public void setFont(String font) throws DOMException; /** * 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 String getFontFamily(); public void setFontFamily(String fontFamily) throws DOMException; /** * 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 String getFontSize(); public void setFontSize(String fontSize) throws DOMException; /** * 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 String getFontSizeAdjust(); public void setFontSizeAdjust(String fontSizeAdjust) throws DOMException; /** * 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 String getFontStretch(); public void setFontStretch(String fontStretch) throws DOMException; /** * 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 String getFontStyle(); public void setFontStyle(String fontStyle) throws DOMException; /** * 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 String getFontVariant(); public void setFontVariant(String fontVariant) throws DOMException; /** * 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 String getFontWeight(); public void setFontWeight(String fontWeight) throws DOMException; /** * 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 String getHeight(); public void setHeight(String height) throws DOMException; /** * 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 String getLeft(); public void setLeft(String left) throws DOMException; /** * 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 String getLetterSpacing(); public void setLetterSpacing(String letterSpacing) throws DOMException; /** * 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 String getLineHeight(); public void setLineHeight(String lineHeight) throws DOMException;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -