2013-09-28 99 views
0

我使用Visual Studio 2010
我創建使用兩種網頁設計框架(基礎CSS
和jQuery easyUi)
如何避免Web應用程序框架的衝突

我在自己的項目這兩個框架的Web應用程序像

<link href="css/groundwork.css" rel="stylesheet" type="text/css" /> 
<link href="css/easyui.css" rel="stylesheet" type="text/css" /> 

然後,我使用一個框架類元素等

<div class="**GroudWork class**"></div> 
<div class="**EasyUi class**"></div> 

那麼這個設計是由另一個框架類(EasyUI框架)發生衝突......

請告訴我..。如何在自己的項目這兩個框架沒有相互衝突..

回答

0

改變你的CSS文件的順序喜歡這張

<link href="css/easyui.css" rel="stylesheet" type="text/css" /> 
<link href="css/groundwork.css" rel="stylesheet" type="text/css" /> 
+0

取決於選擇的特殊性,爲了可能並不重要。 – steveax

+0

我對css文件重新排序......但沒有發生變化 – Pikachu