Menu
  • HOME
  • TAGS

CSS Transition Effect :: Text changing color, but not border

css,hover,border,css-transitions,border-color

You have set in some place of your CSS: .social-nets-wrapper .social li a:hover { text-decoration: none; border-color: #FFF !important; } Then, you need to put: .social-nets-wrapper .social li a:hover { color: #F7941E; border-color: #F7941E !important; /* add !important to override */ transition: all 300ms linear 0s; } Or better, find...

CSS: TD background color causing borders to disappear

css,border,background-color,border-color

Please remove border-collapse: collapse; for #myTable td. Which causes the border to disappear. Avoid giving that for td add like this instead #myTable, #myTable th, #myTable td { border: 1px solid #000; border-collapse: collapse; margin: 0; padding: 4px; position: relative; //REMOVE THIS } Also Please can you try removing the...

border-color fails with inherit value

css,inheritance,opera,border-color

It fails because according to the definition of border-color, the keyword inherit is allowed only as the value of the property by itself, not as a component together with other values. This is what the description [ <color> | transparent ]{1,4} | inherit means: you can have one to four...