HTML/CSS/List Attributes/compact

Материал из Web эксперт
Перейти к: навигация, поиск

"compact" reduces the white space between each item in a list or menu

    
<HTML>
<BODY>
<dl compact="true">
    <dt>Compacted Definition List</dt>
    <dt>1.</dt>
    <dd>Definition 1.</dd>
    <dt>2.</dt>
    <dd>Definition 2.</dd>
</dl>
</BODY>
</HTML>