Can I add css based on android version?

I'm new to Ionic and trying to build a app. I've two testing devices, first one is Moto E(V4.4) and second one is Micromax A110Q(v4.2.1).

My app is looking nice on v4.4, but not getting the look in v4.2.1 . I think some css is not working or overwritten by V4.2.1.

example,

text-overflow: ellipsis; 
overflow: hidden;

is not working. Also some elements are taking margins on android v4.2.1 while they are given

margin:0px !important;

Now, my question is can I add some device specific css for android versions <4.3?

If there any other way to solve this please suggest me.

Thanks in advance.