I need to add a css code that only applies to google chrome but not to firefox.
Problem: I want to put a border-bottom to a div with a class of .div-special
.div-special{
border-bottom: 1px solid #c8c8c8;
}
Output: The border bottom should only apply for google chrome browser but not to firefox.
Please help me.