How to combine this css?
Posted
by Joe
on Stack Overflow
See other posts from Stack Overflow
or by Joe
Published on 2010-03-26T03:05:11Z
Indexed on
2010/03/26
3:13 UTC
Read the original article
Hit count: 349
css
|stylesheet
..
.box_content ::selection {
background:#CCCC33; /* Safari */
}
.box_content ::-moz-selection {
background:#CCCC33; /* Firefox */
}
Anyone know if I can combine those like this?
.box_content ::selection .box_content ::-moz-selection {
background:#CCCC33;
}
Or maybe like:
.box_content ::selection, .box_content ::-moz-selection {
background:#CCCC33;
}
Honestly my mind is not there today.
© Stack Overflow or respective owner