eXept Software AG Logo

Smalltalk/X Webserver

Documentation of class 'HTML::CSS_BottomPadding':

Home

Documentation
www.exept.de
Everywhere
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-HTML-StyleSheet-Box-MarginAndPadding
Version:
rev: 1.11 date: 2018/04/26 10:33:38
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 htmlString.
Create a bottom-padding with pixel value:
    |padding|
    padding := CSS_BottomPadding with:'10px'.
    padding htmlString.
Create a bottom-padding with metric value:
    |padding|
    padding := CSS_BottomPadding with:'5mm'.
    padding htmlString.
Create a bottom-padding with percentage value:
    |padding|
    padding := CSS_BottomPadding with:'10%'.
    padding htmlString.


ST/X 7.2.0.0; WebServer 1.670 at bd0aa1f87cdd.unknown:8081; Tue, 19 Mar 2024 07:13:24 GMT