标签:
<link href="/static/css/main.css" rel="stylesheet">
<head> <style type="text/css"> .main{color:red;} </style> </head>
<body style="color:red;"></body>
1.样式覆盖总体原则:
<head> <style type="text/css"> .main{color:red;background-color:yellow;} </style> </head> <body id="mainbody" class="main" style="color:green;"></body>
color:green;
background-color:yellow;
.class1{
color:red;
}
.class2{
color:green;
}
<div class="class2 class1"> <div class="class1 class2">
<head> <style type="text/css"> .main{color:red !important; background-color:yellow;} </style> </head> <body id="mainbody" class="main" style="color:green;"></body>
标签:
原文地址:http://www.cnblogs.com/buaawp/p/5223169.html