📄 css2properties.java
字号:
/** * 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 String getListStyle(); public void setListStyle(String listStyle) throws DOMException; /** * 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 String getListStyleImage(); public void setListStyleImage(String listStyleImage) throws DOMException; /** * 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 String getListStylePosition(); public void setListStylePosition(String listStylePosition) throws DOMException; /** * 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 String getListStyleType(); public void setListStyleType(String listStyleType) throws DOMException; /** * 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 String getMargin(); public void setMargin(String margin) throws DOMException; /** * 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 String getMarginTop(); public void setMarginTop(String marginTop) throws DOMException; /** * 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 String getMarginRight(); public void setMarginRight(String marginRight) throws DOMException; /** * 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 String getMarginBottom(); public void setMarginBottom(String marginBottom) throws DOMException; /** * 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 String getMarginLeft(); public void setMarginLeft(String marginLeft) throws DOMException; /** * 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 String getMarkerOffset(); public void setMarkerOffset(String markerOffset) throws DOMException; /** * 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 String getMarks(); public void setMarks(String marks) throws DOMException; /** * 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 String getMaxHeight(); public void setMaxHeight(String maxHeight) throws DOMException; /** * 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 String getMaxWidth(); public void setMaxWidth(String maxWidth) throws DOMException; /** * See the min-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 getMinHeight(); public void setMinHeight(String minHeight) throws DOMException; /** * See the min-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 getMinWidth(); public void setMinWidth(String minWidth) throws DOMException; /** * See the orphans 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 getOrphans(); public void setOrphans(String orphans) throws DOMException; /** * See the outline 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 getOutline(); public void setOutline(String outline) throws DOMException; /** * See the outline-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 getOutlineColor(); public void setOutlineColor(String outlineColor) throws DOMException; /** * See the outline-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 getOutlineStyle(); public void setOutlineStyle(String outlineStyle) throws DOMException; /** * See the outline-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 getOutlineWidth(); public void setOutlineWidth(String outlineWidth) throws DOMException; /** * See the overflow 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 getOverflow(); public void setOverflow(String overflow) throws DOMException; /** * See the padding 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 getPadding(); public void setPadding(String padding) throws DOMException; /** * See the padding-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 String getPaddingTop(); public void setPaddingTop(String paddingTop) throws DOMException; /** * See the padding-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 String getPaddingRight(); public void setPaddingRight(String paddingRight) throws DOMException; /** * See the padding-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 getPaddingBottom(); public void setPaddingBottom(String paddingBottom) throws DOMException; /** * See the padding-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 getPaddingLeft(); public void setPaddingLeft(String paddingLeft) throws DOMException; /** * See the page 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 getPage(); public void setPage(String page) throws DOMException; /** * See the page-break-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 getPageBreakAfter(); public void setPageBreakAfter(String pageBreakAfter) throws DOMException; /** * See the page-break-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 getPageBreakBefore(); public void setPageBreakBefore(String pageBreakBefore) throws DOMException; /** * See the page-break-inside 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 getPageBreakInside(); public void setPageBreakInside(String pageBreakInside) throws DOMException; /** * See the pause 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 getPause(); public void setPause(String pause) throws DOMException; /** * See the pause-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 getPauseAfter(); public void setPauseAfter(String pauseAfter) throws DOMException; /**
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -