how to write a css code only for English (or any other language) pages?
- نفیسه افقی 2 سال قبل سوال کرد
- شما باید برای ارسال دیدگاه وارد شوید
Every html page hase a tag named html
with a lang
property. So you can use this and write css only for a specific language. See the code bellow:
html[lang="en-US"]
#sabai {
background:red;
}
just put html[lang="en-US"]
before your code.
- نفیسه افقی 2 سال قبل پاسخ داد
- شما باید برای ارسال دیدگاه وارد شوید