Style Name Description
portlet-section-body The normal text in a section

Examples:

Tag HTML Code Display
<p>

<p class="portlet-section-body">
    The normal text in a section.
</p>
                

The normal text in a section.

<div>

<div class="portlet-section-body">
    The normal text in a section.
</div>
                
The normal text in a section.
<span>

<span class="portlet-section-body">
    The normal text in a section.
</span>
                
The normal text in a section.
<table>

<table class="portlet-section-body">
    <tr>
        <td>The normal text in a section.</td>
    </tr>
</table>
                
The normal text in a section.
<tr>

<table width="100%">
    <thead>
        <tr class="portlet-section-header">
            <th>Section Header</th>
        </tr>
    </thead>
    <tbody>
        <tr class="portlet-section-body">
            <td>section body text</td>
        </tr>
    </tbody>
</table> 
                
Section Header
section body text
<td>

<table width="100%">
    <thead>
        <tr class="portlet-section-header">
            <th>Section Header</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td class="portlet-section-body">
                section body text
            </td>
        </tr>
    </tbody>
</table> 
                
Section Header
section body text
<tbody>

 <table width="100%">
    <thead class="portlet-section-header">
        <tr>
            <th>Section Header</th>
        </tr>
    </thead>
    <tbody class="portlet-section-body">
        <tr>
            <td>section body text</td>
        </tr>
    </tbody>
</table>  
                
Section Header
section body text