Package com.orchestranetworks.ui
Class UICSSClasses.TABLE
java.lang.Object
com.orchestranetworks.ui.UICSSClasses.TABLE
- Enclosing class:
- UICSSClasses
For basic tables (
<table>
,
<tr>
, <th>
and
<td>
containing data).
Attention: If a table is nested inside a basic table, the style will be inherited.
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
Sets the content of the cell or child cells to be centered.static final String
Sets the content of the cell or child cells to be right-aligned.static final String
The minimum to build a basic table.static final String
Defines a full-width table.static final String
Sets the white spaces as unbreakable.static final String
Sets the vertical alignment of cell contents. -
Method Summary
-
Field Details
-
ESSENTIAL
The minimum to build a basic table.To be used in a
<table>
element.- See Also:
-
FULL_WIDTH
Defines a full-width table. The table will have the maximum width possible.To be used with a
<table>
element with the classESSENTIAL
.- See Also:
-
VERT_ALIGN_TOP
Sets the vertical alignment of cell contents. Usually used for data with different heights (multi-line, images, buttons ...).To be used with a
<table>
element with the classESSENTIAL
class.- See Also:
-
UNBREAKABLE_SPACES
Sets the white spaces as unbreakable. No lines will be broken on white spaces.To be used with the elements
<table>
,<tr>
,<th>
and<td>
.- See Also:
-
CELL_ALIGN_RIGHT
Sets the content of the cell or child cells to be right-aligned.To be used with the elements
<table>
,<tr>
,<th>
and<td>
.- See Also:
-
CELL_ALIGN_CENTER
Sets the content of the cell or child cells to be centered.To be use with the elements
<table>
,<tr>
,<th>
and<td>
.- See Also:
-