eXept Software AG Logo

Smalltalk/X Webserver

Documentation of class 'HTML::CSS_BottomPadding':

Home

everywhere
www.exept.de
for:
[back]

Class: CSS_BottomPadding (in HTML)


Inheritance:

   Object
   |
   +--HTML::CSS_AbstractStyleObject
      |
      +--HTML::CSS_AbstractStyleProperty
         |
         +--HTML::CSS_BottomPadding

Package:
stx:goodies/webServer/htmlTree
Category:
Net-Documents-StyleSheet-Box-MarginAndPadding
Version:
rev: 1.9 date: 2007/11/05 21:09:53
user: cg
file: HTML__CSS_BottomPadding.st directory: goodies/webServer/htmlTree
module: stx stc-classLibrary: htmlTree

Class protocol:

required protocol
o  keyName
Return a key name for bottom-padding.


Instance protocol:

required-visiting
o  acceptHTMLVisitor: aVisitor
visitor pattern: dispatch me to the visitor


Examples:


Create an empty bottom-padding:


    |padding|
    padding := CSS_BottomPadding newAuto.
    padding printHtmlString.
Create a bottom-padding with pixel value:


    |padding|
    padding := CSS_BottomPadding with:'10px'.
    padding printHtmlString.
Create a bottom-padding with metric value:


    |padding|
    padding := CSS_BottomPadding with:'5mm'.
    padding printHtmlString.
Create a bottom-padding with percentage value:


    |padding|
    padding := CSS_BottomPadding with:'10%'.
    padding printHtmlString.


ST/X 6.1.1; WebServer 1.620 at exept:8081; Mon, 21 May 2012 16:55:27 GMT