随笔分类 -  css

kindeditor html代码过滤不能保存
摘要:这是因为编辑器默认开启了过滤模式(filterMode:true)。当filterMode为true时,编辑器会根据htmlTags设定自动过滤HTML代码,主要是为了生成干净的代码。如果想保留所有HTML,修改kindeditor.js,请将filterMode设置成false。如果想保留特定HT... 阅读全文
posted @ 2014-04-18 11:59 yun007 阅读(949) 评论(0) 推荐(0) 编辑
php,Allowed memory size of 8388608 bytes exhausted (tried to allocate 1298358 bytes)
摘要:修改apache上传文件大小限制PHP上传文件大小限制解决方法:第一:在php.ini里面查看如下行:upload_max_filesize = 8Mpost_max_size = 10Mmemory_limit = 20M把这些值改成我所说的,看看有没有问题,另外要确认上传的 里没有类似下面的这行这样也是限制上传大小用的。第二:如果是apache 2 需要修改/etc/httpd/conf.d/php.confLimitRequestBody 524288将524288(=512×1024)改大,比如5M(=5×1024×1024)这样上传就不会出现如上问题,上 阅读全文
posted @ 2014-04-02 16:10 yun007 阅读(1610) 评论(0) 推荐(0) 编辑
新闻列表标题省略样式
摘要:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf- 阅读全文
posted @ 2013-06-21 20:12 yun007 阅读(1513) 评论(0) 推荐(0) 编辑
如何防止空链接,跳转到网页顶端
摘要:解决办法:普通的链接像<a href="http://www.example.com">asdf</a>这样的不会跳到顶端的,但空链接<a href="#">这样的,点击后会跳到页面顶端。方法一:把它改为<a href="javascript:void(0)">就可以了。方法二:回三个#号。即<a href="###">即可。 阅读全文
posted @ 2013-05-21 18:59 yun007 阅读(438) 评论(0) 推荐(0) 编辑
表格划过变色之tr:hover无效,td:hover有效解决方法
摘要:首先IE6不支持非A标签的伪类,这里不考虑IE6,,html代码如下:<table width="16%" border="0" cellpadding="1" cellspacing="0"> <tr> <th bgcolor="#009900" >&nbsp;</th> <th bgcolor="#009900" >&nbsp;</th> </tr> <tr> 阅读全文
posted @ 2013-05-20 11:06 yun007 阅读(8884) 评论(0) 推荐(0) 编辑
CSS 表格样式
摘要:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf- 阅读全文
posted @ 2013-05-17 17:39 yun007 阅读(292) 评论(0) 推荐(0) 编辑
JS绝对定位到右下角
摘要:1 <div id="msgBox">2 <div id="msgTitle">最新消息</div>3 <div id="msgContent"><a href="#">这里是内容页面</a></div>4 </div><style> #msgBox{width:150px;border:1px solid silver;background:#C83030; position:fixed;right:0px 阅读全文
posted @ 2013-05-16 21:11 yun007 阅读(616) 评论(0) 推荐(0) 编辑
css万能清除浮动
摘要:<style>.clearfix:after{content:".";display:block;height:0;clear:both;visibility:hidden;}*html .clearfix{height:1%;}*+html .clearfix{height:1%;}.clearfix{display:inline-block;}.clearfix {display:block;}</style> 阅读全文
posted @ 2013-05-14 15:49 yun007 阅读(272) 评论(0) 推荐(0) 编辑