HTML
马欢欢
这个作者很懒,什么都没留下…
展开
-
表格固定宽度时,内容自动换行
有时,table表格中列过多、内容多时,常常会根据每列的业务含义,挑出一些列,设置他们的宽度变窄。但是总是有例外。比如有一条数据在那一列刚好内容特别多,那么页面显示中其内容将显示不全。解决办法:标签内增加style="word-wrap:break-word;"样式。 表格固定宽度时,内容自动换行 white-space:norma原创 2015-02-16 14:00:45 · 1589 阅读 · 0 评论 -
java运行时,环境信息获得
<%!public Long getMaxMemory() { try { Runtime rt = Runtime.getRuntime(); Method m = rt.getClass().getMethod("maxMemory", new Class[0]); Long r = (Long) m.invoke(rt, new Object[0]); return r;原创 2015-02-16 17:33:01 · 494 阅读 · 0 评论 -
seven-things-you-should-known-about-ie-8
We’ve been using IE 8 for just over two weeks and wanted to run through some of the significant differences that will affect anyone involved in web development, debugging or performance tuning.#1原创 2015-05-21 10:34:34 · 882 阅读 · 0 评论 -
网络抓包工具——支持谷歌chrome、IE等
chrome 抓包 fiddler原创 2016-12-19 19:07:55 · 3507 阅读 · 0 评论