On Dec 4, 4:54 pm, skye riquelme <[email protected]> wrote:
> found out that the CSS for rounded corners in
> Opera (as off version 11) is simply "border-radius"

Other browsers use a different CSS attribute name for this.  To ensure
that your document appears the same (or at least similar) across
different browsers, you need to include multiple attribute
definitions, like this:

.displayArea {
   border:1px solid;
   border-radius:1em; /* Opera 11+ */
   -moz-border-radius:1em; /* FireFox */
   -webkit-border-radius:1em; /* Chrome, Safari, other webkit-based
browsers */
}

Note: AFAIK, InternetExplorer still doesn't support rounded corners.

-e

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.

Reply via email to