+ 1
How to used two css in one html
please reply
2 Answers
+ 7
here one important thing to note is that , the CSS linked later will overwrite the CSS for same stuffs if mentioned in previous ones as well
for example in ćļ¼Øļ¼”ļ¼°ļ¼°ļ¼¹ ļ¼“ļ¼Æ ļ¼Øļ¼„ļ¼¬ļ¼°ć s example if
styles.css has body{ color: red}
animations.css has body{ color: blue}
and styles_list.css also has body{ color: green}
then final CSS will be that comes the last ,
so color will be green ( styles_list) will overwrite previous, when ambiguity arises
0
thankx for positive reply