I want to load a css code from a specific stylesheet first, Like:
ul, ol {
margin: 0 0 10px 25px;
padding: 0;
}
the above code is in two files: core.css
and bootstrap.css
core.css
load first in head tag.
But browser always use code first from bootstrap.css
.
I tried to rename bootstrap.css
to z-bootstrap.css
.
But no luck still browser apply styles from z-bootstrap.css
It work when I edit ul, ol
to body ul, body ol
in core.css
But I dont want to do this, How to apply styles from core.css
without adding any class or attribute.???