[tw] Re: Rounded Corners in Opera

2011-12-05 Thread TonG
Hi all,

Even Firefox (v4 and up) "understands" border-radius now. See [1]

Cheers,

Ton

[1] https://developer.mozilla.org/en/CSS/border-radius

On Dec 5, 11:01 am, TonG  wrote:
> Hi all,
>
> FYI,
> Internet Explorer 9 does show rounded corners.
>
> Cheers,
>
> Ton
>
> On Dec 5, 9:33 am, PMario  wrote:
>
>
>
>
>
>
>
> > Hi Skye,
>
> > I did find a nice article about CSS genereators [1] some time ago.
> > Some of them also show a compatibility list.
> > If you got your code, you can have a look what it means at mozillas
> > site [2] :)
>
> > have fun!
> > Mario
>
> > [1]http://blueblots.com/development/css3-generator/
> > [2]https://developer.mozilla.org/en/CSS

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



[tw] Re: Rounded Corners in Opera

2011-12-05 Thread TonG
Hi all,

FYI,
Internet Explorer 9 does show rounded corners.

Cheers,

Ton

On Dec 5, 9:33 am, PMario  wrote:
> Hi Skye,
>
> I did find a nice article about CSS genereators [1] some time ago.
> Some of them also show a compatibility list.
> If you got your code, you can have a look what it means at mozillas
> site [2] :)
>
> have fun!
> Mario
>
> [1]http://blueblots.com/development/css3-generator/
> [2]https://developer.mozilla.org/en/CSS

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



[tw] Re: Rounded Corners in Opera

2011-12-05 Thread PMario
Hi Skye,

I did find a nice article about CSS genereators [1] some time ago.
Some of them also show a compatibility list.
If you got your code, you can have a look what it means at mozillas
site [2] :)

have fun!
Mario

[1] http://blueblots.com/development/css3-generator/
[2] https://developer.mozilla.org/en/CSS

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



[tw] Re: Rounded Corners in Opera

2011-12-04 Thread Eric Shulman
On Dec 4, 4:54 pm, skye riquelme  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 tiddlywiki@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.