473,811 Members | 4,041 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

CSS3?


http://www.geo cities.com/seanmhall2003/css3/compat.html

Anyone know if Firefox, say, implements just a tad more CSS3 than
this?

I was thinking of downloading. It's free, unlike Opera.

Looks interesting, however.
Jul 20 '05
30 2762
Firas wrote:
Phil Evans wrote:
Mark Tranchant wrote:


You can use it as a degradeable enhancement. Then when people try a
real browser, they can see the difference versus, say, Internet
Explorer.


I tend to take this view. I've designed sites where the nav block has
-moz-rounded-corners on the :first-child and :last-child for example


From the frying pan into the fire?


In what sense? Assuming you mean using proprietary CSS extensions, I've
made my peace with that. The HTML is valid and (hopefully) logically
marked up, so the structure is sound. I'm not relying on the rounded
corners for site usability or functionality, they're just an additional
visual treat for people who use gecko browsers. If I was using a
proprietary extension which rendered the site unusable on browsers which
didn't support it, I'd be worried, but I don't see any harm in my
current attitude . . .

Though of course I'm keen to hear alternate views :)

P
Jul 20 '05 #11
Phil Evans wrote:
Firas wrote:
Mark Tranchant wrote:
I tend to take this view. I've designed sites where the nav block has
-moz-rounded-corners on the :first-child and :last-child for example


From the frying pan into the fire?

In what sense? Assuming you mean using proprietary CSS extensions, I've
made my peace with that.
Yup, that :)

The HTML is valid and (hopefully) logically marked up, so the structure is sound.
Does the CSS validate? I'm not a validity fetishist--as in, writing
valid markup just for the sake of just passing the test of validity--but
it stands for interoperabilit y in my mind.

I'm not relying on the rounded corners for site usability or functionality, they're just an additional
visual treat for people who use gecko browsers.
Would you use scrollbar colouring as an additional visual treat for
those who use IE?

If I was using a proprietary extension which rendered the site unusable on browsers which
didn't support it, I'd be worried, but I don't see any harm in my
current attitude . . .

Though of course I'm keen to hear alternate views :)


Here's mine, then. Gecko-specific extensions work *just* for gecko. It's
not worse than using <marquee> (back when it wasn't even considered to
be standardized) and netscape-specific hacks. That got us into a huge
mess, didn't it.

This is not just ivory-tower theory; there's already this in the works:
http://www.w3.org/TR/2002/WD-css3-bo...-border-radius.
I'm not sure whether Mozilla supports it or not, but they should be
pressed to. And opera and IE and whatnot. Write once, read everywhere
(and on everything.)

When it comes down to it, of course, there is no real harm in using a
couple of browser-specific enhancements; the harm comes when it becomes
an overdone crutch.

Wow, my tone is really dry here--to clarify, I'm just a novice and I
don't really have a grasp on web authoring theory: I'm just relaying
what I've picked up. It could all be relative.
Jul 20 '05 #12
Firas wrote:

Would you use scrollbar colouring as an additional visual treat for
those who use IE?


The only ones who think coloring scrollbars is a neat effect are the web
authors who do it. It just creates usability problems, whereas mozilla's
rounded corners do no harm.

There's a big difference, mate.

--
Reply email address is a bottomless spam bucket.
Please reply to the group so everyone can share.
Jul 20 '05 #13
On Tue, 01 Jun 2004 18:14:12 -0500, kchayka <us****@c-net.us> wrote:
Firas wrote:

Would you use scrollbar colouring as an additional visual treat for
those who use IE?


The only ones who think coloring scrollbars is a neat effect are the web
authors who do it. It just creates usability problems, whereas mozilla's
rounded corners do no harm.

There's a big difference, mate.


Except of course the CSS working don't think it's a bad thing, they
just don't think it's easy to specify due to different platforms
having different scrollbar elements.

Jim.
--
comp.lang.javas cript FAQ - http://jibbering.com/faq/

Jul 20 '05 #14
kchayka wrote:
Firas wrote:
Would you use scrollbar colouring as an additional visual treat for
those who use IE?

The only ones who think coloring scrollbars is a neat effect are the web
authors who do it. It just creates usability problems, whereas mozilla's
rounded corners do no harm.

There's a big difference, mate.


Oh please. This is arbitary. I know users who like coloured scrollbars.

Anyway, we're talking about different things here. Would you use IE-only
code that is not a usability problem?
Jul 20 '05 #15
Firas wrote:

I know users who like coloured scrollbars.
They are a minority, I'm sure. :)
Anyway, we're talking about different things here. Would you use IE-only
code that is not a usability problem?


If there was value-added without any negative side effects, maybe. I
have used IE-only code to work around its many bugs, but not for
anything else. Can't really think of anything that's worth the extra
trouble, myself.

--
Reply email address is a bottomless spam bucket.
Please reply to the group so everyone can share.
Jul 20 '05 #16
Jim Ley wrote:
On Tue, 01 Jun 2004 18:14:12 -0500, kchayka <us****@c-net.us> wrote:
The only ones who think coloring scrollbars is a neat effect are the web
authors who do it.


Except of course the CSS working don't think it's a bad thing,


Regardless, just because you can, doesn't mean you should.

--
Reply email address is a bottomless spam bucket.
Please reply to the group so everyone can share.
Jul 20 '05 #17

"kchayka" wrote in message

I know users who like coloured scrollbars.


They are a minority, I'm sure. :)
Anyway, we're talking about different things here. Would you use IE-only
code that is not a usability problem?


If there was value-added without any negative side effects, maybe. I
have used IE-only code to work around its many bugs, but not for
anything else. Can't really think of anything that's worth the extra
trouble, myself.


Interesting thread ... can I chuck in a view from an amateur?

I'm one of those who only recently decided that (a) IE was no longer "fun"
and (b) *did* think that colored scrollbars were cool. I now use Firefox for
fun and Moz for messin' around ... (I just discovered the DOM inspector and
boy am I getting a fast lesson in why my some of my pages didn't turn out as
planned.)

Meanwhile IE it looks so plain and frumpy when I havr to look at it ... it
even makes Opera look exciting. In short IMO IE is crying out for bit of
glam ... and only a really dumb designer is gonna make the scrollbars
invisible and if he'she is that dumb then the site isn't gonna be worth
looking at anyway.

Besides ... style sheets can be loaded in 'chapters' so why not ie_body.css
and nn_body.css + the_rest.css and then use a browser sniffer ... that way
sniffy gecko-geeks won't get all outraged when they peek at the code ...
:D

Jul 20 '05 #18
Firas wrote:
Phil Evans wrote: (snip: using -moz-rounded-corners in site design)
In what sense? Assuming you mean using proprietary CSS extensions,
I've made my peace with that.

Yup, that :)
The HTML is valid and (hopefully) logically
marked up, so the structure is sound.


Does the CSS validate?


Other than the proprietary extensions, yes :p ;)
I'm not relying on the rounded
corners for site usability or functionality, they're just an
additional visual treat for people who use gecko browsers.

Would you use scrollbar colouring as an additional visual treat for
those who use IE?


I'm with kchayka on the useability issue, but I know what you're saying
:) No, I wouldn't have any problem with using IE-only extensions for
decorative purposes. I wouldn't in practice, because I want to encourage
people away from IE ("look how shiny the site looks in other browsers!")
but I've got no philosophical objection.
Here's mine, then. Gecko-specific extensions work *just* for gecko. It's
not worse than using <marquee> (back when it wasn't even considered to
be standardized) and netscape-specific hacks. That got us into a huge
mess, didn't it.
Yup, I agree. I've justified this to myself using our oft-touted
philosophy of separating content and presentation. My content remains
the same whichever browser you use; my presentation may have additional
shininess if you're using a Gecko based browser. In the same way that
I'd expect my site to degrade in the absence of any CSS, I expect it to
still be totally usable in the absence of the -moz-* extensions. This is
the theory anyway ;)
This is not just ivory-tower theory; there's already this in the works:
http://www.w3.org/TR/2002/WD-css3-bo...-border-radius.
I'm not sure whether Mozilla supports it or not, but they should be
pressed to. And opera and IE and whatnot. Write once, read everywhere
(and on everything.)
http://tinyurl.com/32hzb [blooberry.com Netscape CSS Extensions page]
mentions this:

"It LOOKS like many of these proprietary properties are one-to-one
mappings of many of the new features in the CSS3 working draft: "User
Interface for CSS3". Since this document has not been finalized, it
looks like Mozilla decided to err on the side of caution and put the
functionality under special names until CSS3 is more complete."
Wow, my tone is really dry here--to clarify, I'm just a novice and I
don't really have a grasp on web authoring theory: I'm just relaying
what I've picked up. It could all be relative.


It's all friendly banter; I wouldn't be a true geek if I didn't enjoy
discussing this kind of stuff :)

P
Jul 20 '05 #19
> > This is not just ivory-tower theory; there's already this in the works:
http://www.w3.org/TR/2002/WD-css3-bo...-border-radius.
I'm not sure whether Mozilla supports it or not, but they should be

<SNIP>

both mozilla and the latest version of netscape support the border radius
below.
I used it on my site as a added suprise for moz and netscape users. (and
also coz I wanted to test it out ;) )

Wayne

www.secretwebdesign.com
www.starasphost.com

code::

-moz-border-radius: 10px; /* mozilla rounded box -not work on ie etc.. */
/* you can also use it on seperate corners such as - */
-moz-border-radius-topright: 10px;
-moz-border-radius-topleft: 10px;
-moz-border-radius-bottomright: 5px;
-moz-border-radius-bottomleft: 5px;
Jul 20 '05 #20

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

9
2627
by: Stanimir Stamenkov | last post by:
Looking through the draft I still can't figure out how one could (is it possible to) group several elements and style a generated containing block for the group. This is much similar to a typical HTML structure: <H1> <P> <H2> <P> <H3>
14
5784
by: DU | last post by:
According to a recent post, it seems that Konqueror 3.1+ and Safari 1.1 support CSS3 opacity style property under a proprietary name: "Support for the CSS3 opacity (using -khtml-opacity) property. Make entire blocks and inlines transparent without resorting to transparent PNGs." http://weblogs.mozillazine.org/hyatt/archives/2003_10.html#004249 Now, I have a demo page which works for MSIE 6 for Windows and Mozilla-based browsers but...
3
10235
by: Marek Mänd | last post by:
This posting will express my concern about the future of css3 forthcoming recommendation. I think for long time now, that the current implementation of CSS attribute opacity is less than usable in practical real life situations. The soon forthcoming CSS3 recommendation does not serve the public interests in this area not at all. The problem relies in the definition what opacity is, how it is to applied to page elements. In past 5...
2
2197
by: alvarezp | last post by:
I've tried to search the lists for this, and even asked at www-style but I seem not to find anything and they didn't answer. This is about the borders in CSS3. Let's say I'm trying to draw a star-shaped border, a la "Greatest offer!", where the border is visually no more than an broken line. Something like:
4
1778
by: Nik Coughlin | last post by:
Been playing with multiple backgrounds. You'll need Safari (Konquerer works too AFAIK but I haven't tested it) to actually see this: http://nrkn.com/temp/cssTabs/centerFloatlistCss3.html Such a nice, easy way to skin things. Pity it won't work for 95% or more of the browser install base :(
0
9607
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10656
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10397
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10413
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10138
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
7674
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5565
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
2
3879
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
3027
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.