1div.mobiletable:before {
2    content: "desktop";
3    display: none;
4}
5
6@media (max-width:__phone_width__) {
7    div.mobiletable:before {
8        content: "mobile";
9    }
10}
11