Author Topic: border-bottom VS Google Chrome  (Read 916 times)

0 Members and 1 Guest are viewing this topic.

Offline robert_gsfameTopic starter

  • Devotee
  • Posts: 861
    • View Profile
border-bottom VS Google Chrome
« on: September 05, 2010, 02:31:36 AM »
I run my site on google chrome and i found that border-bottom:solid 1px #000000 not executed.

How can i fix this?

thanks in advance

Offline Jaysonic

  • Fanatic
  • Posts: 3,332
  • Gender: Male
  • 8548863
    • View Profile
    • I Am Lewy Babes
Re: border-bottom VS Google Chrome
« Reply #1 on: September 05, 2010, 04:24:40 AM »
Because it's in the format of:

Code: [Select]
border-bottom: 1px solid #000;
Good luck with your coding.
Jason ~ ProjectFear ~ Jaysonic (and variations of... :))

Offline lostprophetpunk

  • Enthusiast
  • Posts: 268
  • Gender: Male
    • View Profile
Re: border-bottom VS Google Chrome
« Reply #2 on: September 05, 2010, 03:06:03 PM »
I run my site on google chrome and i found that border-bottom:solid 1px #000000 not executed.

How can i fix this?

thanks in advance
Although the answer is above, I shall explain why. It's because you put the 'solid' before the '1px' in the piece of code. If it doesn't have the correct order for that attribute then it will not execute.