All Packages Class Hierarchy This Package Previous Next Index
Class org.w3c.css.properties.CssPaddingBottom
java.lang.Object
|
+----org.w3c.css.properties.CssProperty
|
+----org.w3c.css.properties.CssPaddingSide
|
+----org.w3c.css.properties.CssPaddingBottom
- public class CssPaddingBottom
- extends CssPaddingSide
'padding-bottom'
Value: <length> | <percentage>
Initial: 0
Applies to: all elements
Inherited: no
Percentage values: refer to parent element's width
This property sets the bottom padding of an element.
BLOCKQUOTE { padding-bottom: 2em }
Padding values cannot be negative.
-
CssPaddingBottom()
- Create a new CssPaddingBottom
-
CssPaddingBottom(CssExpression)
- Create a new CssPaddingBottom
-
CssPaddingBottom(CssPaddingSide)
- Create a new CssPaddingBottom with an another CssPaddingSide
-
addToStyle(CssStyle)
- Add this property to the CssStyle.
-
equals(CssProperty)
- Compares two properties for equality.
-
getPropertyInStyle(CssStyle, boolean)
- Get this property in the style.
-
getPropertyName()
- Returns the name of this property
CssPaddingBottom
public CssPaddingBottom()
- Create a new CssPaddingBottom
CssPaddingBottom
public CssPaddingBottom(CssPaddingSide another)
- Create a new CssPaddingBottom with an another CssPaddingSide
- Parameters:
- another - The another side.
CssPaddingBottom
public CssPaddingBottom(CssExpression expression) throws InvalidParamException
- Create a new CssPaddingBottom
- Parameters:
- expression - The expression for this property.
- Throws: InvalidParamException
- Values are incorrect
getPropertyName
public String getPropertyName()
- Returns the name of this property
- Overrides:
- getPropertyName in class CssProperty
addToStyle
public void addToStyle(CssStyle style)
- Add this property to the CssStyle.
- Parameters:
- style - The CssStyle
- Overrides:
- addToStyle in class CssProperty
getPropertyInStyle
public CssProperty getPropertyInStyle(CssStyle style,
boolean resolve)
- Get this property in the style.
- Parameters:
- style - The style where the property is
- resolve - if true, resolve the style to find this property
- Overrides:
- getPropertyInStyle in class CssProperty
equals
public boolean equals(CssProperty property)
- Compares two properties for equality.
- Parameters:
- value - The other property.
- Overrides:
- equals in class CssProperty
All Packages Class Hierarchy This Package Previous Next Index