摘要: 1、 CSS选择器优先级 行内样式(通过Style=""定义) 1000; ID选择器 100; Class类选择器 10; 类型选择器 1 数值越大优先级越高 例如: Style="" 优先级为1000;#wrapper #content {}优先级为 100*2=200; #content.datePosted {}优先级为 100+10=110;div#content {}优先级为 1+100=1012、页脚居底 1 html, body { 2 margin:0; /* 必要,否则纵向滚动条不会消失 */ 3 height:100%; /* 必要 阅读全文
posted @ 2013-09-30 14:54 Macaque 阅读(155) 评论(0) 推荐(0) 编辑
摘要: exp或是expdp命令在导出数据的时候会把表记录数为0的表过滤掉,无法导出。通过如下方法可以导出记录数0的表。1、先查询一下哪些表是空的: select table_name from user_tables where NUM_ROWS=0;2、下面我们通过select 来生成修改语句: select 'alter table '||table_name||' allocate extent;' from user_tables where num_rows=03、然后就在结果窗口里面生成了下面那些东西: alter table E2USER_STATE a 阅读全文
posted @ 2013-09-30 14:00 Macaque 阅读(488) 评论(0) 推荐(0) 编辑
摘要: 1、小图标在线查找 https://www.iconfinder.com/2、在线做图,Flowchart流程图,BPMN图,Org组织结构图等 http://www.processon.com/3、前端开发Emmet API http://docs.emmet.io/cheat-sheet/3、LayoutIt是一个Twitter Bootstrap 界面生成器,能够帮助你快速制作出网站和界面模型,同时能够下载生成的网站代码。 http://www.layoutit.com/4、在线API http://tool.oschina.net/apidocs 阅读全文
posted @ 2013-09-30 13:50 Macaque 阅读(207) 评论(0) 推荐(0) 编辑