border:2px solid red;
    -moz-border-radius: 5px;

trying to make a boarder in css.
it works fine in google chrome but it doesnt work in firework any ideas??

also this dont work in firefox

background:-moz-linear-gradient( center top, #b1b7b6 56%, #CCC 100% );

Recommended Answers

All 3 Replies

Just use,

border:2px solid red;
border-radius: 5px;

background:-moz-linear-gradient( center top, #b1b7b6 56%, #CCC 100% ); is working fine in my Firefox 13.0.1

IE and Safari support the border attribute directly on TABLE elements which used for external and internal borders. FireFox does not, but you can use standard CSS to fix it.

  TABLE {border: 1px solid #eee;}
  TABLE TD {border: 1px solid #eee;}   

Regards,

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.