Css Multiple background-color
Posted
by
Khanh TO
on Stack Overflow
See other posts from Stack Overflow
or by Khanh TO
Published on 2014-08-20T10:08:14Z
Indexed on
2014/08/20
10:20 UTC
Read the original article
Hit count: 219
css
I'm a novice in Css and it's difficult to search for this specific case on the internet, so I post a question here.
I'm working on an existing code base and I see something like this.
li {
background-color: #000 \9;
background-color: rgba(0, 0, 0, 0);
}
I don't understand the meaning of \9
. But it looks to me they are duplicates and I should remove one of them.
Could you please explain the \9
and should I remove one of them? Thanks.
© Stack Overflow or respective owner