Тема
:
Тема посвященная stylus
Показать сообщение отдельно
#
41
(
permalink
)
09.01.2014, 01:57
Maxmaxmaximus7
Профессор
Регистрация: 08.01.2014
Сообщений: 354
overload ::selection
```css
::selection(pre, entery, post)
return pre + '::' + entery + ', ' + pre + '::-moz-' + entery;
```
applying
```css
div::selection {
color:red
}
```
cimpile to
```css
div::selection, div::-moz-selection {
color:red
}
```