I want to set a pseudo css for my elements. I have css like this:
.element::before{
  font-size : 10px;
  margin-top: 10px;
}
now, I want to change the css for lang, like:
.element::before:lang(en) { 
  margin-top: 0;
}
How can I do that? If any one please tell me about this.
 
    