css 設置變數

10:54 下午 0 Comments

今天更新了erp中的menu, 發現imgpath 放的是server上的設定,
與我的電腦環境不同, 且他是定義在css之中的, 所以想找找看
有沒有css 設定變數的方法.

找到了這一篇.

修改前的css file
.treeview .hitarea {
background: url(/images/treeview-default.gif) -64px -25px no-repeat;
height: 16px;
width: 16px;
margin-left: -16px;
float: left;
cursor: pointer;
}
修改後的css file

/* Variable definitions
<variable name="imgURL" description="Image hosting URL" type="automatic" value="/melin/images/">
*/

.treeview .hitarea {
background: url($imgUrl/treeview-default.gif) -64px -25px no-repeat;
height: 16px;
width: 16px;
margin-left: -16px;
float: left;
cursor: pointer;
}

已確定此方法可正常運作在ie6.0.

0 意見: