*/
public String getBottomWithInheritance() {
String bottom = jsxGet_bottom();
if ("inherit".equals(bottom)) {
if (getBrowserVersion().hasFeature(CAN_INHERIT_CSS_PROPERTY_VALUES)) {
final HTMLElement parent = getElement().getParentHTMLElement();
bottom = (parent != null ? parent.jsxGet_currentStyle().getBottomWithInheritance() : "auto");
}
else {
bottom = "auto";
}
}