MediaWiki:Monobook.css: Difference between revisions

From MikroTik Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 2: Line 2:
<pre>
<pre>
*/
*/
dl { display: table; }


dt {
dt {
     display: list-item;
     display: table-row;
     font-weight:bold;
     font-weight:bold;
    margin-bottom:0.1em;
}
}


dd {
dd {
     display: inline;
     display: table-cell;
    line-height:1.5em;
    margin-bottom:0.1em;
    margin-left:2em;
}
}



Revision as of 14:08, 29 January 2008

/*
<pre>
*/

dl { display: table; }

dt {
    display: table-row;
    font-weight:bold;
}

dd {
    display: table-cell;
}

/*
</pre>
*/