Support For Css Standards

Pages: 1, 2
free web hosting

Read Latest Entries..: (Post #11) by jcguy on Oct 4 2005, 01:35 PM. (Line Breaks Removed)
I'm sure many web developers want to be compliant with W3C standards, but I've a feeling that many ware skipping it and not being compliant because they want their websites to be available to as widest an audience as possible. And Microsoft and the other browser developers aren't helping by creating their browsers to stick to the standards and render pages according to the rules.... read more.
Read the FIRST post of this Topic. - Express your Opinion! Contribute Knowledge :-).

Free Web Hosting > Computers & Tech > Designing > Web Design and HTML

Support For Css Standards

vizskywalker
I've recently decided to make my site 100% support CSS 2.1 standards as well as xhtml 1.0 standards. However, when I load my site in IE, some of the styles don't show up properly. For example: I have a tag defined, and then I redefine it with :hover, yet IE doesn't activate the :hover portion. Is there anywhere I can go to find out which standards are supported by which browsers?

~Viz

Reply

mastercomputers
I wouldn't try working with IE, I dropped into their development discussion for IE7 placed a few suggestions about things they never got to doing in CSS1 only to be told it wasn't a priority, and then asked about other recommendations for them to implement and still not a positive attitude towards it... I want to develop for all browsers, but I also would like to make use of the recommendations. Rumour has it, they're willing to drop w3c recommendations just to have their browser work their own way. That would be real sad, and if they do, I'd definitely not bother supporting them, even if they have that market.

As for a site that has a compatibility list, which is about to be redone since newer versions have been produced for some browsers. You can find it here http://nanobox.chipx86.com/browser_support.php but it is outdated (but not by much).

Cheers,


MC

Reply

vizskywalker
I know IE has and probably never will support standards. Unfortunately, AIM just released AOL Explorer, which is essentially IE, so I've found a number of people whi switch because they think they ar elaving "evil" IE but getting the same interface. So, since this is a company site I'm working on, the IE market is one I have to worry about (unfortunately) although my site will definitely be optimized for Firefox and have a link to it.

And thanks for the link.

~Viz

Reply

hatim
I think all sane web devlopers hould start making sites for FireFox only. And besides even Firefox is not 100% W3C compatible ..its the next best thing.

Reply

abhiram
This is what I used to get hover functionality in IE.

Put this code in the <head> of your index.html file

CODE

<script type="text/javascript" src="iefix.js"></script>


The contents of iefix.js are:

CODE

startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("nav");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
 }
 node.onmouseout=function() {
 this.className=this.className.replace(" over", "");
  }
  }
 }
}
}
window.onload=startList;


Any element you need to apply hover functionality, specify like this :

CODE
li:hover, li.over
{
background-color:gray;
font-weight:bold;
}


The li.over makes the list element 'hover'able in IE, thanks to the javascript.

Finally, use code like this to make some settings specific for IE. This should be placed at the top of the CSS file. Whatever you set here will override what you specified in the CSS file.

CODE

/* Fix IE. Hide from IE Mac \*/
* html ul li { float: left; }
* html ul li a { height: 1%; }
* html ul { margin-left:0; margin-right:0;}

/* End */


This method has been taken from A List Apart. It's been used for various CSS menus. For more resources, I would suggest you visit the site. They've got loads and loads of stuff on CSS and Javascript.

Hope this helps you out smile.gif.

 

 

 


Reply

Hercco
QUOTE(hatim @ Sep 22 2005, 02:02 PM)
I think all sane web devlopers hould start making sites for FireFox only. And besides even Firefox is not 100% W3C compatible ..its the next best thing.
*



Oh god don't say that. What about Opera users? And people who are stuck with IE and IE based browsers, in work for example.

What I'd like to see is all developers doing W3C comliant code. If the most websites, epscially big commercial ones, started appearing in standard (X)HTML & CSS the browser developers would have to start paying more attention to standard compliancy. The pecking order should be: standards, web developers and the browser developers at last. Unfortunately now it is completely opposite and for most sites its not the plural form of "browser developer".



And for full-CSS people stuggling with IE, you might want to check out Dean Edwards' IE7 package. You can find it here http://dean.edwards.name/IE7/
The beauty of the thing is that users don't need to install anything but most of the CSS stuff that wouldn't work on on IE now works. In addition to better CSS 'support' you also get a proper PNG transparency with which you can get rid of those GIFs finally.
IE7 is also bloody easy to use. Just include the scripts when the client agent is IE. There is absolutely no need to make changes in you CSS or html.

Reply

vizskywalker
That's interesting, the IE7 project. I wonder what MS is going to do when they find out about it. I totally agree, you cannot forget about people because you dissaprove of a software company, that would be wrong and unfair. I wonder hoq the real IE7 will compare to this one, I'm tyring to get onthe beta for it, but I can't figure out how.

~Viz

Reply

mastercomputers
Just an update on that link, it's still in the testing stages, so some things have not been tested yet.

IE 6 & 7, Firefox 1 & 1.5, Opera 8.
http://nanobox.chipx86.com/browser_support...7|FX1|FX1_5|OP8
http://nanobox.chipx86.com/browser_support...7|FX1|FX1_5|OP8

Always happy to see improvements on the standards no matter which browser is improving.

Cheers,


MC

Reply

morrisnoble
QUOTE(vizskywalker @ Sep 21 2005, 01:14 PM)
I've recently decided to make my site 100% support CSS 2.1 standards as well as xhtml 1.0 standards.  However, when I load my site in IE, some of the styles don't show up properly.  For example: I have a tag defined, and then I redefine it with :hover, yet IE doesn't activate the :hover portion.  Is there anywhere I can go to find out which standards are supported by which browsers?

~Viz
*



Hey VIZ go to http://w3schools.org - they have the best tutorials and information on web standards. They have tutorials on ASP, HTML, JAVASCRIPT, XHTML, XML, PERL, CSS, PHP and many others.

You could also try http://www.htmlgoodies.com, one of the best free resource sites on the net. they too have free tutorials on the above topics.

Good luck.

If you have any questions, feel free to email me at morrisnoblejr@yahoo.com

Reply

Retaining
Great links, I'm going to have to try all of them out, that IE7 script looks very useful. If nothing else, it's better than the "Get it working in Firefox in 5 minutes and then spend 2 hours making it work in IE" programming I've been doing. Unfortunately, IE/MS doesn't support many W3C standards and doesn't appear to be moving that direction either, making web development very difficult...

Reply

Latest Entries

jcguy
I'm sure many web developers want to be compliant with W3C standards, but I've a feeling that many ware skipping it and not being compliant because they want their websites to be available to as widest an audience as possible. And Microsoft and the other browser developers aren't helping by creating their browsers to stick to the standards and render pages according to the rules.

Reply


Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

Pages: 1, 2
Recent Queries:-
  1. free web space supporting css - 113.10 hr back. (2)
  2. aol browser css support - 209.57 hr back. (1)
  3. iefix.js png transparency - 412.06 hr back. (1)
  4. iefix.js - 663.84 hr back. (1)
Similar Topics

Keywords : support, css, standards

  1. Support With Transfering To New System
    (5)
  2. Moddable/opensource Fps Game
    Preferably SP Support as in mission mode. (8)
    Hi are there any free FPS Game makers or engines designed specifically for SP Mode? Most of the
    moddable FPS Games are for multiplayer and SauerBraten SP Isn't very good to create a storyline
    with so I am asking if someone knows a moddable FPS Game/engine that has a descent SP Mode with
    cutscene support and SP Elements to create a good SP FPS Game. Thanks in advance.....
  3. Eta On Support Ticket Resolution
    (0)
    Well, I raised my first support ticket a few days ago (concerning this problem ) and have had no
    response yet. While I'm not saying I expected any within three days, I'd like to know
    roughly how "efficient" (I suppose that's the right word) the support staff are. What sort of
    response times have other people had from support tickets? Does it change depending on what
    "department" you submit the ticket to? Do the different priority levels actually mean much? Any
    feedback on this would be great, as it'll hopefully give me some hope that my email problem ....
  4. A Good Theme, Bad Mod Support.
    (0)
    Alright, I love SMF and the Themes and Modification Possible for it (Though I do agree Mods and
    Theme editing was much easier with my Old PHPBB Boards because I'm better with HTML than PHP
    Scripthing), I can easily install Mods for the Main Theme (SMF Default Theme - Core) it is hard for
    me to make Modification work on other Themes. I have a Forum at
    http://legallyhighforum.astahost.com/ (soon to be http://legallyhighforum.com) and I love having
    the Ad Management Mod (I need it to Display Adsense) as well as the Shoutbox Mods (I don't
    have one yet, I'....
  5. Flashget Download Manage
    High-speed safe and Multi-protocol support! (0)
    FlashGet is a leading download manager and has the highest amount of users on the internet. It uses
    MHT(Multi-server Hyper-threading Transportation) technique, supports various protocols and has
    excellent document management features. FlashGet is a freeware without any adware or spyware. Safe
    and clean: Optimize the system resource FlashGet can use up the lowest system resources and will not
    influence your normal work or study. increase the download speed and stability Flashget can
    increase download speed from 6-10 times. It uses MHT (Multi-server Hyper-threading Tr....
  6. What Platforms Does Staroffice Support?
    (2)
    Hi, I would like to know at which computer environment/platform the StarOffice runs. Thank you for
    your help in this matter.....
  7. Yahoo! May Add Openid Support
    (1)
    An article from Security Focus (http://www.securityfocus.com/brief/665) states that Yahoo! is
    considering adding support for OpenID (http://openid.net/). This would add Yahoo! to the growing
    number of sites that are supporting the open source effort. There is no mention of Yahoo! Messenger
    but I would guess that it will not be supported immediately by the desktop client. For those who
    have not heard of OpenID I would suggest doing some research. It promises to get rid of the
    hundreds (perhaps thousands for some) of separate website passwords. You could essentially u....
  8. Support Ssh
    (3)
    It is hard to find a free host providing SSH support, so I thought I was so lucky to find AstaHost
    with free Web Hosting offer: Our Free Web Hosting offer :- NO ADS, BANNERS, POPUPS! Web Hosting
    Control Panel MS Frontpage WebSite Hosting PHP, CGI, Perl, Unlimited MySQL ImageMagick Support
    Unlimited Email and Unlimited FTP Accounts Fast, Free 24/7 Tech Support Web Site Hosting Help
    Forums 3 Web Based E-Mail Programs TCL, SSH 99.9% Uptime Guarantee But I have just found out
    that my server does not have SSH as advertised. Then, I read some of your posts s....
  9. Microsoft Customer Support
    (8)
    Recently, I received an email from Microsoft about the Windows Live OneCare BETA that they enabled
    Online Photo Backup. They gave me a product key to activate the software, but I couldn't find a
    place to put that in. I phoned Microsoft Support and... 1. Called Microsoft OneCare support at 1
    (866) 662 2273. 2. Pressed 1 and then 2. 3. Listened to repetitive messages about Windows
    Marketplace, MSN Billing and Windows Live OneCare. 4. Connected to a person, filled out profile info
    such as email, name and phone number and described problem. 5. Got transferred to the Win....
  10. Paramount & Dreamworks Drops Bluray Support
    (2)
    Announced last month on August 21, 2007, Paramount & Dreamworks will drop Blu-ray support and
    backing only HD-DVD. The decision behind this is because the two studios claim that the HD DVDs are
    "market-ready technologies" and that the cost for manufacturing HD-DVDs are cheaper than Blu-ray
    discs. QUOTE(CBC) The releases will cover those produced by Paramount Pictures, DreamWorks
    Pictures, Paramount Vantage, Nickelodeon Movies and MTV Films, as well as movies from DreamWorks
    Animation, which are distributed by Paramount Home Entertainment. The first HD DVD to be ....
  11. Support: Laptop Wont Turn On
    (14)
    Hi All, I have a Acer Aspire 3003WLC for about a year now. Not a bad, simple laptop, but i have been
    having power problems recently. I have had to have the laptop repaired once already because the
    sound had stopped working and since I have got it back there has been problems with the power. When
    i attempt to turn the laptop on, with just the battery, nothing happens! when i plug in the ac
    adapter (with green light on it) the charging light comes on, but i cannot still turn the system on.
    after a while (30min -> 1 hr) the system will turn on when i press the power button....
  12. Php Zip Support ?
    (0)
    I'm trying to make a photoalbum in PHP and I'd like to be able to let people upload a ZIP
    file that contains all the images. But it appears that astahost doesn't have ZIP support
    installed (or maybe disbled) ? /ohmy.gif" style="vertical-align:middle" emoid=":o" border="0"
    alt="ohmy.gif" /> . Is there any way to get the PHP ZIP functions to work on astahost ? Where do I
    have to start begging for it /tongue.gif" style="vertical-align:middle" emoid=":P" border="0"
    alt="tongue.gif" /> Ps. I hope this wasn't asked before, but looking for 'PHP' a....
  13. What Footbal (soccer) Team Do You Support
    (17)
    I was wondering what teams people support.....
  14. Xsl Support
    (0)
    Is there any possiblility to activate the support for libxslt in the server? I'm working on a
    project with XML and the related stylesheets XSL, in scripts processing bibliography. Thanks in
    advance....
  15. Lousy Tech Support
    a small sampling (5)
    I post frequently regarding troubleshooting problems I run into, and one reason is because I
    can't find much decent help around. I've made reference on occasion to the lousy tech
    support available locally, but I just thought I'd show a sample of it. This is from the Sci-Tech
    world, a weekly addition to the newspaper. It's not entirely technical, but is one of the few in
    the country, and as such is referred to by a lot of people. It also represents the average technical
    knowledge of the guy at the computer store, if even. QUOTE QUESTION: I have a Penti....
  16. Mod_rewrite Support?
    (4)
    Is mod_rewrite enabled? I'm getting 404's in the wordpress install that would indicate
    mod_rewrite is off since the "/year/month/day/title" link structure isn't working anymore...
    Thanks.....
  17. A Way To Get Support Staff
    (6)
    Hey Guys, I am sorry that I have not been on the AstaHost forums, its just that school and other
    aspects have gotten into my life. During this time I have setup up one very successful website and
    another one in the works. Yet I have a major problem with one of the sites. I am not able to find
    that many people who are willing to offer technical support. While I have 24 /7 IRC and e-mail
    support, I would like to include a true chat service. I have advertised on different forums and have
    offered free web hosting and game servers. I also stated that any representative that s....
  18. Macbook(pro) And External Displays
    Does it support more than one? (2)
    I've been considering buying a new computer and at the moments I'm leaning towards laptop
    and especially Macbook. I'd use my Macbook for graphics editing and web designing and I prefer
    much screen space. Two LCD screens would be the optimal choice. However Apple's website
    mentions that you can you external display and the Macbook's own display simultaneously , but
    nothing about using two screens with the lid shut. So does anyone know if there is a way to use
    Macbook or Macbook pro with two external screens. And I want to use DVI cabling for both.....
  19. Need Help: Installing Apache With PHP Support
    Not a tutorial, a question. (10)
    I have been trying to use php on my computer but i cannot seem to get Apache2 work with PHP5. Apache
    works fine by itself but when i edit the configuration file, the server crashes upon restart. When i
    comment out the Loadmodule line the server works but without the php support. Any ideas, tutorials
    or suggestions?....
  20. Help: Postgres Support Needed
    (0)
    I have a few topics out there that can explain my situation. I posted in another support forum,
    which seems kind of redundant, but I suppose in one forum anyone can post, and only members can post
    in this one. So here I am in this one as well.
    http://www.astahost.com/could-postgrest-su...led-t13780.html That topic will explain my situation
    and link you to my first post in the programming section that explains a little more. So far I have
    3 topics out there about this with 2 of them being in support. I've also emailed
    support@astahost.com with no reply. I&....
  21. Could Postgres Support Be Enabled?
    (0)
    Typo in the name of the title: Postgres not postgrest I have access to build a postgres database
    from cpanel, but once I tried to connect to it from php it wasn't enabled. the command CODE
    pg_connect() turned up an unknown function error. PHPInfo (according to tavoxperu) also shows
    that postgres is not supported. Is there anyway that support could be enabled for postgres, or at
    least on my server? Please let me know as soon as possible. If you have any questions about the
    problem then please refer to this thread. http://www.astahost.com/does-astahost-s....
  22. Does Astahost Support pg_connect?
    (3)
    I was building a simple database to login to a survey I was writing for class. Before I ever
    started testing the actual survey I came across a QUOTE Call to undefined function:
    pg_connect() I'm just curious is astahost supports this function. In php.net it says that
    as of php 3 it was supported, but maybe there's something extra to turn it on. I use a DBI to
    connect to the database and I haven't had any problems before. I'm sure the code is right,
    but here it is for clarification. CODE     function DBI ($db, $user, $password, $port=543....
  23. Other Sound Format Support
    Sound in Java (3)
    I know how to play a sound file in an applet and an application. I was wondering though if anyone
    knows how to make Java play other sound formats such as mp3, wma, etc.. Well especially an mp3. I
    know Java already supports wav, au, and aif How do you play mp3's?....
  24. Do You Hate Internet Explorer?
    Show Your Support!, this is called FLING IE! (53)
    Hey guyz! Do you hate Internet explorer? or do you want other people to stop using Internet
    explorer and make them switch to another browser? If yes, then here's the time to show your
    support. I've started a campaign in which I am requesting people to stop using Internet
    Explorer, I am sure that most of us know why we've got to do this...I know most of us are
    intelligent /smile.gif" style="vertical-align:middle" emoid=":)" border="0" alt="smile.gif" /> I
    think if anyone thinks the way I think..must take part in this campaign and must make other people
    awar....
  25. Need Support Urgently? Admin Absent? Read This...
    (15)
    Hi folks, So you need support urgently and right at this moment all the admins have gone AWOL.
    No one's replying to your PM's nor to your posts. Really dire situation eh ?? Not really
    as bad as you think - as there's a far easier way out than waiting for some godforsaken admin to
    drop by and fix your problem.. /wink.gif' border='0' style='vertical-align:middle' alt='wink.gif'
    /> Here's what you need to do: Send a mail to support_AT_astahost_DOT_com . Your mail should
    include: Your site details (subdomain/domain) cPanel username & password ....
  26. Add Resume And Download Manager Support
    for megaupload (1)
    Add Resume and Download Manager Support to Megaupload.com This tutorial is genuine and verified.
    Requirements: Flashget 1.65 (tested on this version) 1. Open the link of megaupload.com given to
    you. Now wait for the timer counter to get over. 2. When the Download Now link becomes visible
    copy the link. 3. Open Flashget and select Edit>>Paste URL and the link will get copied. Now the
    link originally given in the form of http://www.megaupload.com/?d=XXXXXXXX - copy this link and
    paste in the referrer box. Now start the download. Resume support and D/L Manager....
  27. iPod Help
    I need the email address for support (8)
    So i just got my iPod mini and the screen is now broken after 2 days, I didnt break it. You see
    there seems to be vertical lines where the pixels dont work and i need the email address for support
    so i can sent apple an email decribing my situation. i mean i just spent 250$ on this thing and now
    its broken. I don't know wat to do. if you can provide me with any suggestions then please post.....
  28. Does Astahost Support GD 1.6.2 Or GD 2.0 ?
    (3)
    Hello again ppl .. I wanted to know if Astahost.com supports these : GD 1.6.2, GD 2.0, or
    ImageMagick and if it supports anyone of these could u let me know the version and how to enable it
    if need arises .. or just could some one give me an overview of the above mentioned features .. but
    the main point is does Astahost support them .. and if not ... how do i install it manually ( if it
    can be done ) I am trying to install an image gallery to my IPB forum so it requires the above
    stuff to work .. Thankx Cheers....
  29. Does Astahost Support Ruby Cgi?
    What are the general specifications? (9)
    I was searching this forum to find out if Astahost actually support Ruby. It remains vague to me.
    I found Astahost from clickherefree.com when searching for webhosts featuring Ruby. But on
    Astahost's own page of complete hosting feature, there is no mention of Ruby. Also, on
    free-webhosts.com there is no mention of Ruby under Astahost's description.. Q: Does Astahost
    support Ruby CGI programming? if so, what are the general specifications?....
  30. New Nvidia Display Driver Was Released On 1/6
    support opengl 2.0, Version: 1.0-7664 (2)
    The new Nvidia display card driver released on 1/6. It support openGL 2.0 now... tha's very
    cool now I can turn on the openGL for rendering in gxmame.. hhaa Here are some release highlights:
    * Added OpenGL 2.0 Support. * Added initial support for Xinerama + OpenGL; see APPENDIX V in the
    text README. * Added support for the EXT_framebuffer_object OpenGL extension. for more detail,
    please click here: http://www.nvidia.com/object/unix.html ....

    1. Looking for support, css, standards






*SIMILAR VIDEOS*
Searching Video's for support, css, standards
advertisement




Support For Css Standards