- 浏览: 2766 次
- 性别:
- 来自: 北京
最新评论
文章列表
比如cls,overCls等,只需要在css每一个属性最后加入“!important”即可。例如
.head_input_inputover{
border:0px!important;
border:none!important;
width:120px!important;
height:60px!important;
background:url("../images/btn_switch_hover.png") no-repeat left top transparent !important;
padding:0px!impor ...
Set<Role> userRolesSet = userManage.findUserByID(userID).getRoles();
List<Role> userRoles = new ArrayList<Role>(userRolesSet);
Collections.sort(userRoles, new Comparator<Role>() {
public int compare(Role arg0, Role arg1) {
return -arg0.getCreateDate() ...