23 lines
465 B
PHP
Executable File
23 lines
465 B
PHP
Executable File
<?php
|
|
// $Header: /cvsroot/html2ps/css.border.bottom.inc.php,v 1.1 2006/09/07 18:38:13 Konstantin Exp $
|
|
|
|
class CSSBorderBottom extends CSSSubFieldProperty {
|
|
function getPropertyCode() {
|
|
return CSS_BORDER_BOTTOM;
|
|
}
|
|
|
|
function getPropertyName() {
|
|
return 'border-bottom';
|
|
}
|
|
|
|
function parse($value) {
|
|
if ($value == 'inherit') {
|
|
return CSS_PROPERTY_INHERIT;
|
|
};
|
|
|
|
$border = CSSBorder::parse($value);
|
|
return $border->bottom;
|
|
}
|
|
}
|
|
|
|
?>
|