Jump to content

User talk:24.141.46.113/monobook.css

Page contents not supported in other languages.
From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by 24.141.46.113 (talk) at 02:13, 17 February 2008 (Created page with 'make a few corners round, only supported by moz/firefox/other gecko browsers for now: #p-cactions ul li, #p-cactions ul li a { -moz-border-radius-topleft: ...'). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)

/* make a few corners round, only supported by moz/firefox/other gecko browsers for now */

  1. p-cactions ul li, #p-cactions ul li a {
 -moz-border-radius-topleft: 1em;
 -moz-border-radius-topright: 1em;

}

  1. content {
 -moz-border-radius-topleft: 1em; 
 -moz-border-radius-bottomleft: 1em;

} div.pBody {

 -moz-border-radius-topright: 1em;
 -moz-border-radius-bottomright: 1em;

}

/* same following the css3 draft specs, any browsers supporting this? */

  1. p-cactions ul li, #p-cactions ul li a {
 border-radius-topleft: 1em;
 border-radius-topright: 1em;

}

  1. content {
 border-radius-topleft: 1em;
 border-radius-bottomleft: 1em;

} div.pBody {

 border-radius-topright: 1em;
 border-radius-bottomright: 1em;

}