*{}这样的优先级是非常低的
强制生效就每一条css属性后面都加!important;
*{ margin:0px !important; padding:0px !important; list-style-type:none !important;}
这样就可以了。
当然平时写代码是不推荐使用!important的,渲染原理上来讲,加载到!important后浏览器要回过头去重新渲染,效率比较低下