Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > HTML > css and internet explorer

Reply
Thread Tools

css and internet explorer

 
 
nicolacantalupo
Guest
Posts: n/a
 
      01-10-2008
ho il seguente css solo che internet explorer
non valuta le ultime tre righe!
come aggirare il problema e soprattutto a cosa è dovuto?
/* tabella corsi */
.tab_corsi{font-size:12px;border:0px}
.tab_corsi td{border:0px}
.tab_corsi td:first-child{background:#444;color:#F06}
.tab_corsi td+td:hover{background:#444;color:white}
.tab_corsi tr:first-child{background:#444;color:#F06}

 
Reply With Quote
 
 
 
 
nicolacantalupo
Guest
Posts: n/a
 
      01-10-2008
I have this css:
/* table corsi */
..tab_corsi{font-size:12px;border:0px}
..tab_corsi td{border:0px}
..tab_corsi td:first-child{background:#444;color:#F06}
..tab_corsi td+td:hover{background:#444;color:white}
..tab_corsi tr:first-child{background:#444;color:#F06}

internet explorer is not compatible whit last 3 rows!
solution?
 
Reply With Quote
 
 
 
 
rf
Guest
Posts: n/a
 
      01-10-2008

"nicolacantalupo" <> wrote in message
news:c60277a4-7a25-4b7d-95de-...
>I have this css:
> /* table corsi */
> .tab_corsi{font-size:12px;border:0px}
> .tab_corsi td{border:0px}
> .tab_corsi td:first-child{background:#444;color:#F06}
> .tab_corsi td+td:hover{background:#444;color:white}
> .tab_corsi tr:first-child{background:#444;color:#F06}
>
> internet explorer is not compatible whit last 3 rows!
> solution?


None. Those selectors are not supported by IE.

--
Richard.


 
Reply With Quote
 
nicolacantalupo
Guest
Posts: n/a
 
      01-10-2008
solution?
thanks for the tip
by
 
Reply With Quote
 
Jonathan N. Little
Guest
Posts: n/a
 
      01-10-2008
nicolacantalupo wrote:
> solution?
> thanks for the tip
> by


>>> .tab_corsi td:first-child{background:#444;color:#F06}


Make a specific class

>>> .tab_corsi td+td:hover{background:#444;color:white}

Use JavaScript to attach a onmouseover event or HTC with IE's
proprietary behavior() CSS property

>>> .tab_corsi tr:first-child{background:#444;color:#F06}

Make a specific class


Yes, IE's meager CSS support is a pain...


--
Take care,

Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
 
Reply With Quote
 
GTalbot
Guest
Posts: n/a
 
      01-10-2008
On 10 jan, 06:03, "rf" <r...@invalid.com> wrote:
> "nicolacantalupo" <nicolacantal...@libero.it> wrote in message
>
> news:c60277a4-7a25-4b7d-95de-...
>
> >I have this css:
> > /* table corsi */
> > .tab_corsi{font-size:12px;border:0px}
> > .tab_corsi td{border:0px}
> > .tab_corsi td:first-child{background:#444;color:#F06}
> > .tab_corsi td+td:hover{background:#444;color:white}
> > .tab_corsi tr:first-child{background:#444;color:#F06}

>
> > internet explorer is not compatible whit last 3 rows!
> > solution?

>
> None. Those selectors are not supported by IE.
>
> --
> Richard.


Richard, first-child selector and adjacent sibling selector are
selectors supported by MSIE 7. I'm pretty sure you are aware of this
too. Just wanted to be sure...

Nico, you may want to look, examine these articles, webpages:

http://css-discuss.incutio.com/?page=StylingColumns
http://yelotofu.com/2007/05/styling-table-columns/
http://www.info.com.ph/~etan/w3panth...ectomania.html

Regards, Gérard
--
Internet Explorer 7 bugs
http://www.gtalbot.org/BrowserBugsSection/MSIE7Bugs/

 
Reply With Quote
 
GTalbot
Guest
Posts: n/a
 
      01-10-2008
On 10 jan, 09:52, "Jonathan N. Little" <lws4...@centralva.net> wrote:
> nicolacantalupo wrote:
> > solution?
> > thanks for the tip
> > by
> >>> .tab_corsi td:first-child{background:#444;color:#F06}

>
> Make a specific class
>
> >>> .tab_corsi td+td:hover{background:#444;color:white}

>
> Use JavaScript to attach a onmouseover event or HTC with IE's
> proprietary behavior() CSS property
>
> >>> .tab_corsi tr:first-child{background:#444;color:#F06}

>
> Make a specific class
>
> Yes, IE's meager CSS support is a pain...


"
Finally, we added new features from CSS2.1:
* Selectors: first-child, adjacent, attribute,
"

Details on our CSS changes for IE7
http://blogs.msdn.com/ie/archive/2006/08/22/712830.aspx

To Nico,

IE6 is now considered an old and buggy browser. Most people now switch
to Firefox 2 (Firefox 3 will be released in February 2008, in Italian
too) or to Opera 9.50 or to Safari 3.

.tab_corsi{font-size:12px;border:0px}

I advise you to avoid setting font-size to px unit and to small font
size. I have my minimum font size set to 13px and 12px may be small
for over 40 years old people.

"
1. Legibility Problems
Bad fonts won the vote by a landslide, getting almost twice as many
votes as the #2 mistake. About two-thirds of the voters complained
about small font sizes or frozen font sizes;
"
Top Ten Web Design Mistakes of 2005
http://www.useit.com/alertbox/designmistakes.html

Font size should be ideally in relative unit like %, not in pixels.
"
Do not specify the font-size in pt, or other absolute length units
(like px) for screen stylesheets. They render inconsistently across
platforms and can't be resized by the User Agent (e.g browser). Keep
the usage of such units for styling on media with fixed and known
physical properties (e.g print).
Use relative length units such as percent
"
W3C Quality Assurance tip for webmasters:
Care With Font Size
http://www.w3.org/QA/Tips/font-size

Also
http://k75s.home.att.net/fontsize.html by Beauregard T. Shagnasty
is worth reading and is often mentionned in this newsgroup.

Regards, Gérard
--
Internet Explorer 7 bugs
http://www.gtalbot.org/BrowserBugsSection/MSIE7Bugs/
 
Reply With Quote
 
Jonathan N. Little
Guest
Posts: n/a
 
      01-10-2008
GTalbot wrote:
> On 10 jan, 09:52, "Jonathan N. Little" <lws4...@centralva.net> wrote:


>> Yes, IE's meager CSS support is a pain...

>
> "
> Finally, we added new features from CSS2.1:
> * Selectors: first-child, adjacent, attribute,
> "
>
> Details on our CSS changes for IE7
> http://blogs.msdn.com/ie/archive/2006/08/22/712830.aspx


Ah yes, but guess what OP's version of IE was?

X-HTTP-UserAgent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;
SV1; .NET

And wouldn't have been nice if they had also implemented many of the
other CSS2.1 properties they lack, and without "features" as you have
pointed out

http://www.gtalbot.org/BrowserBugsSection/MSIE7Bugs/
Bugs in MSIE 7 for Windows

Gee you're up to a 100! Woot, woot!

--
Take care,

Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
 
Reply With Quote
 
GTalbot
Guest
Posts: n/a
 
      01-11-2008
On 10 jan, 04:52, nicolacantalupo <nicolacantal...@libero.it> wrote:

> internet explorer is not compatible whit last 3 rows!
> solution?


Le ragioni di Internet Explorer by Gabriele Romanato
http://www.css-zibaldone.com/articol...-ie/index.html

http://www.css-zibaldone.com/articoli.html


End 6!
Make the Net a happier place
http://www.end6.org/

Why do you keep using IE6?
http://www.quimble.com/poll/view/5744

Is it OK to stop supporting Internet Explorer 6?
http://www.milienzo.com/2007/08/06/i...et-explorer-6/

Why do we bother with IE?
http://blog.patspam.com/2007/10/18/w...other-with-ie/

Internet Explorer 6 Gripes
http://www.computergripes.com/IE6.html
Bugs, bugs, bugs
http://www.computergripes.com/IE6.html#Latest%20Bugs

Internet Explorer can make your computer unsafe. Why not switch to a
browser that's more secure?
http://browsehappy.com/

Regards, Gérard
 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Internet Explorer 8: C:\Program Files\Internet Explorer\iexplore.exe vs C:\Program Files (x86)\Internet Explorer\iexplore.exe Nathan Sokalski Windows 64bit 16 02-22-2010 08:31 AM
internet explorer 7 - Internet Explorer cannot display the webpag sandy j Windows 64bit 0 05-02-2009 02:12 AM
trouble with css positioning, javascript and internet explorer Coyote HTML 2 10-16-2006 01:25 AM
Loading problem from Internet explorer of an html with CSS and PNG Bubu HTML 3 08-02-2005 09:04 AM
CSS :hover and Internet Explorer 6? Erik Harris HTML 6 06-26-2003 09:33 PM



Advertisments