IE 8 doesn't support nth-child how can I solve this?

Adeel Khanzada

IE 8 doesn't support nth-child how can I solve this problem ?

 #hm-top div:nth-child(1) h3 {
    color: #63c2ff;
    width: 300px;
    padding: 115px 0 0 0;
    background: url(images/trade.png) no-repeat center top;
    }
Khizer Najeeb
equivalent to li:nth-child(1)
li:first-child { /* change to this */
    border-top: 5px solid red;
}
equivalent to li:nth-child(2)
li:first-child + li { /* change to this */
    border-top: 5px solid blue;
}
equivalent to li:nth-child(3)
 li:first-child + li + li { /* change to this */
    border-top: 5px solid green;
}​

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Object doesn't support this property or method in ie8 for javascript

From Dev

How can I use jQuery to match nth-child or last if nth not found?

From Dev

Object doesn't support trim method in IE8

From Dev

bootstrap.min.js IE8 Object doesn't support property or method 'on'

From Dev

IE8 JS error: Object doesn't support this property or method

From Dev

Object doesn't support this property or method in IE8 javascript

From Dev

Javascript broken after moving from IE8 to IE11: "Object doesn't support property or method 'all' "

From Dev

IE8 "Object doesn't support this property or method" with JQuery 1.7

From Dev

Why can't I use nth-child on mark tags?

From Dev

How do I select the nth child of an element?

From Dev

How can I find a list of all SSE instructions? What happens if a CPU doesn't support SSE?

From Dev

Hammer.js (IE8)- Object doesn't support property or method 'addEventListener'

From Dev

Object doesn't support addEventListener IE8 in jquery

From Dev

How can I use rules suggested by solve_direct? (by (rule …) doesn't always work)

From Dev

jQuery error only in IE8 'Object doesn't support this property or method'

From Dev

Object doesn't support this property or method in ie8 for javascript

From Dev

IE8 Javascript error: Object doesn't support this property or method

From Dev

Object doesn't support trim method in IE8

From Dev

Flexslider and IE8 Object doesn't support this property or method

From Dev

SCRIPT438: Object doesn't support property or method 'keys' in IE8

From Dev

Object doesn't support this property or method in IE8 javascript

From Dev

IE8 JS error: Object doesn't support this property or method

From Dev

How can I get nth child in array of items retrieved by class?

From Dev

ie8 Object doesn't support this for extjs code

From Dev

How can I target only visible objects with nth-child?

From Dev

Sound card doesn't support midi. How can I play midi output in real-time?

From Dev

Since 14 8 2016 Skype can't connect from Ubuntu 16.04. How can I solve it?

From Dev

nth-child code doesn't work

From Dev

How do I select the nth child of an element?

Related Related

  1. 1

    Object doesn't support this property or method in ie8 for javascript

  2. 2

    How can I use jQuery to match nth-child or last if nth not found?

  3. 3

    Object doesn't support trim method in IE8

  4. 4

    bootstrap.min.js IE8 Object doesn't support property or method 'on'

  5. 5

    IE8 JS error: Object doesn't support this property or method

  6. 6

    Object doesn't support this property or method in IE8 javascript

  7. 7

    Javascript broken after moving from IE8 to IE11: "Object doesn't support property or method 'all' "

  8. 8

    IE8 "Object doesn't support this property or method" with JQuery 1.7

  9. 9

    Why can't I use nth-child on mark tags?

  10. 10

    How do I select the nth child of an element?

  11. 11

    How can I find a list of all SSE instructions? What happens if a CPU doesn't support SSE?

  12. 12

    Hammer.js (IE8)- Object doesn't support property or method 'addEventListener'

  13. 13

    Object doesn't support addEventListener IE8 in jquery

  14. 14

    How can I use rules suggested by solve_direct? (by (rule …) doesn't always work)

  15. 15

    jQuery error only in IE8 'Object doesn't support this property or method'

  16. 16

    Object doesn't support this property or method in ie8 for javascript

  17. 17

    IE8 Javascript error: Object doesn't support this property or method

  18. 18

    Object doesn't support trim method in IE8

  19. 19

    Flexslider and IE8 Object doesn't support this property or method

  20. 20

    SCRIPT438: Object doesn't support property or method 'keys' in IE8

  21. 21

    Object doesn't support this property or method in IE8 javascript

  22. 22

    IE8 JS error: Object doesn't support this property or method

  23. 23

    How can I get nth child in array of items retrieved by class?

  24. 24

    ie8 Object doesn't support this for extjs code

  25. 25

    How can I target only visible objects with nth-child?

  26. 26

    Sound card doesn't support midi. How can I play midi output in real-time?

  27. 27

    Since 14 8 2016 Skype can't connect from Ubuntu 16.04. How can I solve it?

  28. 28

    nth-child code doesn't work

  29. 29

    How do I select the nth child of an element?

HotTag

Archive