Style Name Description
portlet-msg-alert Indicate an operation cannot be completed in its entirety, or operation may be able to continue once the user takes some action.

Examples:

Tag HTML Code Display
<p>

<p class="portlet-msg-alert">
    The P element represents a paragraph. It 
    cannot contain block-level elements 
    (including P itself).
</p>
                

The P element represents a paragraph. It cannot contain block-level elements (including P itself).

<div>

<div class="portlet-msg-alert">
    Password is invalid. Please ensure that it:
        <ul>
            <li>
                Consists of only letters [a-z], spaces, 
                hyphens and underscores.
            </li>
            <li>
                Contains at least one uppercase and 
                one lowercase character.
             </li>
             <li>
                Contains at least one number.
             </li>
         </ul>
</div>
                
Password is invalid. Please ensure that it:
  • Consists of only letters [a-z], spaces, hyphens and underscores.
  • Contains at least one uppercase and one lowercase character.
  • Contains at least one number.