css 生效顺序 less 写法

<!DOCTYPE html>
<html>
<style type="text/css">
.c{
color:red;
}
.c{
color:green;
}
</style>
<body>
<p class="c">123</p>
</body>
</html>

原文地址:https://www.cnblogs.com/rsapaper/p/9733689.html