<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
<channel>
<title><![CDATA[7mBlue'Blog - by www.7mblue.com]]></title>
<link>http://www.7mblue.com/help/</link>
<description><![CDATA[Design,css,flash,dw,ps,pc,net]]></description>
<language>zh-cn</language>
<copyright><![CDATA[Copyright 2005 PBlog2 v2.4]]></copyright>
<webMaster><![CDATA[hhq1338@163.com(7mblue)]]></webMaster>
<generator>PBlog2 v2.4</generator> 
<image>
	<title>7mBlue&#39;Blog - by www.7mblue.com</title> 
	<url>http://www.7mblue.com/help/images/logos.gif</url> 
	<link>http://www.7mblue.com/help/</link> 
	<description>7mBlue&#39;Blog - by www.7mblue.com</description> 
</image>

			<item>
			<link>http://www.7mblue.com/help/default.asp?id=1326</link>
			<title><![CDATA[几个经典的css技巧]]></title>
			<author>hhq1338@163.com(7mblue)</author>
			<category><![CDATA[CSS]]></category>
			<pubDate>Wed,22 Oct 2008 17:28:28 +0800</pubDate>
			<guid>http://www.7mblue.com/help/default.asp?id=1326</guid>	
		<description><![CDATA[<div id="textstyle_1" style="FONT-SIZE: 9pt; OVERFLOW: hidden; TEXT-INDENT: 24px">
<p><strong>使用 line-height 垂直居中</strong></p>
<p><span class="code">line-height:24px;</span></p>
<p>使用固定宽度的容器并且需要一行垂直居中时，使用 line-height 即可（高度与父层容器一致），更多的垂直居中总结可以看这里。</p>
<p><strong>清除容器浮动</strong></p>
<p><span class="code">#main {<br />
&nbsp;&nbsp;&nbsp; overflow:hidden;<br />
}</span></p>
<p>期前也提到过这样的问题，更多信息可以看这里。</p>
<p><strong>不让链接折行</strong></p>
<p><span class="code">a {<br />
&nbsp;&nbsp;&nbsp; white-space:nowrap;<br />
}</span></p>
<p>上面的设定就能避免链接折行，不过个人建议长链接会有相应的这行（有关换行方面的讨论，参看圆心的记录）。</p>
<p><strong>始终让 Firefox 显示滚动条</strong></p>
<p><span class="code">html {<br />
&nbsp;&nbsp;&nbsp; overflow:-moz-scrollbars-vertical;<br />
}</span></p>
<p>更多的 Mozilla/Firefox 私有 CSS 属性可以参考这里。需跨浏览器的支持，也可以使用</p>
<p><span class="code">body, html {<br />
&nbsp;&nbsp;&nbsp; min-height:101%;<br />
}</span></p>
<p><strong>使块元素水平居中</strong></p>
<p><span class="code">margin:0 auto;</span></p>
<p>其实就是</p>
<p><span class="code">margin-left: auto;<br />
margin-right: auto;</span></p>
<p>这个技巧基本上所有的 CSS 教科书都会有说明，别忘记给它加上个宽度。Exploer 下也可以使用</p>
<p><span class="code">body{<br />
&nbsp;&nbsp;&nbsp; text-align: center;<br />
}</span></p>
<p>然后定义内层容器</p>
<p><span class="code">text-align: left;</span></p>
<p>恢复。</p>
<p><strong>隐藏 Exploer textarea 的滚动条</strong></p>
<p><span class="code">textarea {<br />
&nbsp;&nbsp;&nbsp; overflow:auto;<br />
}</span></p>
<p>Exploer 默认情况下 textarea 会有垂直滚动条（不要问我为什么）。</p>
<p><strong>设置打印分页</strong></p>
<p><span class="code">h2 {<br />
&nbsp;&nbsp;&nbsp; page-break-before:always;<br />
}</span></p>
<p>page-break-before 属性能设置打印网页时的分页。</p>
<p><strong>删除链接上的虚线框</strong></p>
<p><span class="code">a:active, a:focus {<br />
&nbsp;&nbsp;&nbsp; outline:none;<br />
}</span></p>
<p>Firefox 默认会在链接获得焦点（或者点击时）加上条虚线框，使用上面的属性可以删除。</p>
<p><strong>最简单的 CSS 重置</strong></p>
<p><span class="code">* {<br />
&nbsp;&nbsp; margin: 0; padding: 0<br />
}</span></p>
</div>]]></description>
		</item>
		
			<item>
			<link>http://www.7mblue.com/help/default.asp?id=1325</link>
			<title><![CDATA[Jmail组件发送asp页表单到邮箱]]></title>
			<author>hhq1338@163.com(7mblue)</author>
			<category><![CDATA[ASP]]></category>
			<pubDate>Tue,08 Jul 2008 14:53:38 +0800</pubDate>
			<guid>http://www.7mblue.com/help/default.asp?id=1325</guid>	
		<description><![CDATA[目的：用户提交表单，信息发送到指定的邮箱<br/><br/>准备：服务器必须装有jmail组件（我用的是jmail4.5），有一个接收邮箱（我的是163的）<br/><br/>方法：<br/><br/>下面是填写表单页面代码：<br/><br/><div class="UBBPanel"><div class="UBBTitle"><img src="http://www.7mblue.com/help/images/code.gif" style="margin:0px 2px -3px 0px" alt="程序代码"/> 程序代码</div><div class="UBBContent">&lt;html&gt;<br/><br/>&lt;head&gt;<br/><br/>&lt;title&gt;在线发送邮件&lt;/title&gt;<br/><br/>&lt;meta http-equiv=&#34;content-type=&#34; content=&#34;text/html; charset=gb2312&#34;&gt;<br/><br/>&lt;/head&gt;<br/><br/>&lt;body&gt;<br/><br/>&lt;form method=&#34;post&#34; action=&#34;sendmail.asp&#34;&gt;<br/><br/>发件人名称：&lt;input type=&#34;text&#34; name=&#34;fname&#34;&gt;<br/>&lt;br&gt;<br/>&lt;br&gt;<br/><br/>发件人邮箱：&lt;input type=&#34;text&#34; name=&#34;femail&#34;&gt;&lt;br&gt;<br/>&lt;br&gt;<br/><br/>邮件标题：&lt;input type=&#34;text&#34; name=&#34;title&#34;&gt;<br/>&lt;br&gt;<br/>&lt;br&gt;<br/><br/>邮件内容：&lt;textarea rows=&#34;9&#34; cols=&#34;40&#34; name=&#34;content&#34;&gt;&lt;/textarea&gt;&lt;br&gt;<br/><br/>&lt;div align=&#34;center&#34;&gt;&lt;input type=&#34;submit&#34; name=&#34;submit&#34; value=&#34;发送&#34;&gt;&lt;/div&gt;<br/><br/>&lt;/form&gt;<br/><br/>&lt;/body&gt;<br/><br/>&lt;/html&gt; </div></div><br/><br/>下面是sendmail.asp接收表单及发送到邮箱页面代码：<br/><br/><div class="UBBPanel"><div class="UBBTitle"><img src="http://www.7mblue.com/help/images/code.gif" style="margin:0px 2px -3px 0px" alt="程序代码"/> 程序代码</div><div class="UBBContent">&lt;%<br/>dim jmail<br/><br/>set jmail=server.cr&#101;ateobject(&#34;Jmail.message&#34;)<br/><br/>jmail.silent=true<br/><br/>jmail.charset=&#34;gb2312&#34;<br/><br/>jmail.fromname=request(&#34;fname&#34;) &#39;这里是发件人名称，可以从数据库或表单中取值<br/><br/>jmail.from=&#34;你的163邮箱&#34; &#39;这里是发件人邮箱，可以从数据库或表单中取值，但格式一定要正确<br/><br/>Jmail.AddRecipient(&#34;邮件接收邮箱地址&#34;)<br/><br/>jmail.subject=request(&#34;title&#34;) &#39;这是邮件标题，该值可以从数据库或表单中取值<br/><br/>jmail.Body =request(&#34;content&#34;)&amp;vbLf&amp;&#34;邮件来自：&#34;&amp;request(&#34;femail&#34;) &#39;这是邮件内容<br/><br/>jmail.mailserverusername=&#34;你的163的邮箱用户名&#34;<br/><br/>jmail.mailserverpassword=&#34;你的163邮箱用户登陆密码&#34;<br/><br/>jmail.maildomain=&#34;smtp.163.com&#34; &#39;邮件发送服务器域名<br/><br/>sendok=jmail.send(&#34;smtp.163.com&#34;) &#39;smtp服务器名称<br/><br/><br/>if sendok then<br/><br/>response.write &#34;恭喜您，邮件发送成功&#34;<br/><br/>else<br/><br/>response.write &#34;对不起，邮件发送失败，可能由于服务器登录设置配置不当造成或填写的信息有误，请确认正确后再进行发送！&#34;<br/><br/>end if<br/><br/>%&gt; </div></div><br/><br/>所有的邮件都是以你的163邮箱作为发件人发送到指定的邮箱的，因此，我在邮件内容里，加了提交表单的联系邮箱，当然也可以接收其他的联系信息，比如电话等。]]></description>
		</item>
		
			<item>
			<link>http://www.7mblue.com/help/default.asp?id=1324</link>
			<title><![CDATA[用shtml来include网页文件]]></title>
			<author>hhq1338@163.com(7mblue)</author>
			<category><![CDATA[DW]]></category>
			<pubDate>Wed,21 May 2008 11:28:53 +0800</pubDate>
			<guid>http://www.7mblue.com/help/default.asp?id=1324</guid>	
		<description><![CDATA[　　在网站构建过中。当我们遇到很多的内容为静态页面，而页首与页脚又经常要更换时，如果一直使用html文件总会有很多的麻烦。因为批量修改起来很不方面，所以我们总希望能将页脚与页尾include到html文件中来。 html属于客户端解析形的格式化语言，自4.0后几乎很难再有大的变动(毕竟很多浏览器只按4.0标准来解析)，所以至今也没include这样的概念。而html的框架(frame与iframe)虽然可以用来包含首页与页脚文件，但使用frame与iframe的概念与动态页面(asp,jsp, php等)的include那样不同，frame与iframe的主体页面与被包括的页的不是一个页面，而通过include的方式调用的页面主体页面与被包括的页面仍然是一个页面，这样页面再加载的时就没速度的影响，更不会有多个窗口这样的问题。当然frame与iframe的作用还是挺大的，只是这与 include这样包括页面进来的概念不同。<br/><br/>　　除frame与iframe之外，常用的调用文件的方法还有采用js。这与include概念倒是很接近，但可以需要客户端js的支持，而且修改也不很方面，因为被包括的js是通过document.write来输出html代码，这样虽然能达到效果，可js毕竟执行客户端动态效果更好，比如现在较流行的AJAX。所以无论是frame/iframe还是js都与include不太一样(倒是Dreamweaver中的library与 include很像，可惜只能用在Dreamweaver中)，而我们有时页面有很多静态页面，内容不是动态的且没有规律可循，更不好做到数据库里去。如新浪的新闻之类的，这时我们可以采用shtml的方式来做这些页面。--JarryLi in BeiJing<br/><br/>　　那什么是shtml呢?<br/><br/>　　使用SSI(Server Side Include)的html文件扩展名，SSI(Server Side Include)，通常称为&#34;服务器端嵌入&#34;或者叫&#34;服务器端包含&#34;，是一种类似于ASP的基于服务器的网页制作技术。默认扩展名是 .stm、.shtm 和 .shtml。<br/><br/>　　什么是SSI?<br/><br/>　　SSI是英文Server Side Includes的缩写，翻译成中文就是服务器端包含的意思。从技术角度上说，SSI就是在HTML文件中，可以通过注释行调用的命令或指针。SSI具有强大的功能，只要使用一条简单的SSI命令就可以实现整个网站的内容更新，时间和日期的动态显示，以及执行shell和CGI脚本程序等复杂的功能。网站维护常常碰到的一个问题是，网站的结构已经固定，却为了更新一点内容而不得不重做一大批网页。SSI提供了一种简单、有效的方法来解决这一问题，它将一个网站的基本结构放在几个简单的HTML文件中(模板)，以后我们要做的只是将文本传到服务器，让程序按照模板自动生成网页，从而使管理大型网站变得容易。<br/><br/>　　如何使你的Apache服务器支持SSI?<br/><br/>　　Apache(如何在windows以及linuc下安装apache请参见另两篇文章)默认是不支持SSI的，需要我们更改 httpd.conf来进行配置。我这里以windows平台的Apache 2.0.x为例(在linux平台下与之相同)，打开conf目录下的httpd.conf文件，搜索“AddType text/html .shtml”，找到：<br/><br/>　　以下是引用片段：<br/><br/>　　# AddType text/html .shtml<br/>　　# AddOutputFilter INCLUDES .shtml<br/><br/>　　把这两行前面的#去掉 。<br/><br/>　　然后搜索“Options Indexes FollowSymLinks”<br/><br/>　　在搜索到的那一行后面添加“ Includes”<br/><br/>　　即将该行改变为 Options Indexes FollowSymLinks Includes<br/><br/>　　熟悉apache manual的可能会觉得比较容易。<br/><br/>　　保存httpd.conf，重起apache即可<br/><br/>　　到此我们就完成了对Apache SSI的设置。<br/><br/>　　如何让你的IIS服务器支持SSI<br/><br/>　　windows 2000:<br/><br/>　　IIS里添加一个应用程序扩展名映射<br/><br/>　　可执行文件:C:\WINDOWS\system32\inetsrv\ssinc.dll<br/><br/>　　扩展名:shtml/shtm<br/><br/>　　windows 2003 2003默认已经支持SSI(shtml文件),只需在IIS的&#34;Web服务扩展&#34;里设置&#34;在服务器端的包含文件&#34;为&#34;允许&#34; 即可IIS6.0对于SSI进行了一些改进，以前IIS5.0的一些程序迁移过后可能无法运用。<br/><br/>　　一个经常的出现问题是出现如下错误：<br/><br/>　　&#34;处理 SSI 文件时出错 - Error processing SSI file&#34;<br/><br/>　　经过测试，以下做法会导致这个错误：<br/><br/>　　1、服务器物理路径使用中文名。<br/><br/>　　2、包含文件中使用中文名。<br/><br/>　　3、包含文件不存在。<br/><br/>　　4、被包含的文件再次包含使用中文名的文件。<br/><br/>　　该错误在Unicode编码时依旧，属于IIS的问题。<br/><br/>　　解决方法：对于使用SSI的站点物理和URL地址都全部使用英文。<br/><br/>　　shtml文件测试?<br/><br/>　　主体文件，比如命名为test.shtml，内容为(把head.html与foot.html文件包进来，与asp,jsp,php中的include相同)<br/><br/>　　以下是引用片段：<br/><br/>&lt;!--#include file=&#34;head.html&#34;--&gt;&lt;hr&gt;&lt;b&gt;你好，这是中间的内容&lt;/b&gt;&lt;hr&gt;&lt;!--#include file=&#34;foot.html&#34;--&gt;<br/><br/>　　页首文件,比如命名为head.html，内容为<br/><br/>　　以下是引用片段：<br/><br/>&lt;!DOCTYPE HTML PUBLIC &#34;-//W3C//DTD HTML 4.01 Transitional//EN&#34;&#34;<a href="http://www.w3.org/TR/html4/loose.dtd" target="_blank">http://www.w3.org/TR/html4/loose.dtd</a>&#34;&gt;&lt;html&gt;&lt;head&gt;&lt;title&gt;Untitled Document&lt;/title&gt;&lt;meta http-equiv=&#34;Content-Type&#34; content=&#34;text/html; charset=gb2312&#34;&gt;&lt;/head&gt;&lt;body&gt;&lt;div style=&#34;background-color:#00CC66;boder:1px groove o&#114;ange &#34;&gt;我是页首导航栏的公共信息&lt;/div&gt;<br/><br/>　　页尾文件,比如命名为foot.html，内容为<br/><br/>　　以下是引用片段：<br/><br/>　　我是页尾版权信息&lt;/body&gt;&lt;/html&gt;<br/><br/>　　然后运行web server，在地址栏中打开test.shtml文件，就会得到一个完整的页面，包括头与尾文件。<br/><br/>　　shtml中简单的SSI命令<br/><br/>　　SSI具有强大的功能，只要使用一条简单的SSI命令就可以实现整个网站的内容更新，时间和日期的动态显示，以及执行shell和CGI脚本程序等复杂的功能。比如我们修改上面提及的test.shtml文件，加入以下代码，将会显示服务器日期以及客户端IP等：<br/><br/>　　以下是引用片段：<br/><br/>&lt;font color=red&gt;  本文档名称: &lt;br&gt;  &lt;!--#echovar=&#34;DOCUMENT_NAME&#34;--&gt; &lt;br&gt;  时区：&lt;br&gt;  &lt;!--#echovar=&#34;DATE_LOCAL&#34;--&gt; &lt;br&gt;  你的IP地址是: &lt;br&gt;  &lt;!--#echovar=&#34;REMOTE_ADDR&#34;--&gt;&lt;br&gt;  今天是：  &lt;!--#config timefmt=&#34;%A, %B %d, %Y&#34;--&gt;  &lt;!--#echovar=&#34;LAST_MODIFIED&#34; --&gt;  &lt;br&gt;  &lt;/font&gt;<br/><br/>　　SSI指令基本格式<br/><br/>　　程序代码:<br/><br/>以下是引用片段：<br/>&lt;!-– 指令名称=&#34;指令参数&#34;&gt; <br/>&lt;!--#include file=&#34;head.htm&#34;--&gt; <br/><br/>　　说明:<br/><br/>　　1.&lt;!-- --&gt;是HTML语法中表示注释，当WEB服务器不支持SSI时，会忽略这些信息。<br/><br/>　　2.#include 为SSI指令之一。<br/><br/>　　3.file 为include的参数, info.htm为参数值，在本指令中指将要包含的文档名。<br/><br/>　　注意:<br/><br/>　　1．&lt;!--与#号间无空格，只有SSI指令与参数间存在空格。<br/><br/>　　2．上面的标点=&#34;&#34;，一个也不能少。<br/><br/>　　3．SSI指令是大小写敏感的，因此参数必须是小写才会起作用。详细可以查看SHTML详细教程 ，通过SHTML可以减轻许多工作负担哦。另外：shtml文件在网页服务器下运行才有效，直接用ie打开将被当作是文本文件。 ]]></description>
		</item>
		
			<item>
			<link>http://www.7mblue.com/help/default.asp?id=1323</link>
			<title><![CDATA[父容器高度自适应的问题]]></title>
			<author>hhq1338@163.com(7mblue)</author>
			<category><![CDATA[CSS]]></category>
			<pubDate>Wed,21 May 2008 10:16:56 +0800</pubDate>
			<guid>http://www.7mblue.com/help/default.asp?id=1323</guid>	
		<description><![CDATA[父DIV有个最小高度<br/>内DIV 高度大于 父DIV的高度时  你DIV就适应该内DIV的高度<br/><br/>解决方法：在父窗口上这样定义height:auto!important; height:150px; min-height:150px;<br/>这样写在各个浏览器上都不会有问题了.<br/><br/><div class="UBBPanel"><div class="UBBTitle"><img src="http://www.7mblue.com/help/images/html.gif" style="margin:0px 2px -3px 0px"> HTML代码</div><div class="UBBContent"><TEXTAREA rows="8" id="temp65261">
<html>
<head>
<meta http-equiv=&#34;Content-Type&#34; content=&#34;text/html; charset=gb2312&#34; />
<title>无标题文档</title>
<style type=&#34;text/css&#34;>
<!--
#main { background-color:#99FF33; width:100%; height:auto!important; height:150px; min-height:150px; }
#sub1 { margin:0px auto; background-color:#993333; width:60%; height:100px; }
#sub2 { margin:0px auto; background-color:#0066FF; width:60%; height:100px; }
-->
</style>
</head>
<body>
<div id=&#34;main&#34;>
   <div id=&#34;sub1&#34;>
   </div>
   <div id=&#34;sub2&#34;>
   </div>
</div>
</body>
</html></TEXTAREA><br/><INPUT onclick="runEx('temp65261')"  type="button" value="运行此代码"/> <INPUT onclick="doCopy('temp65261')"  type="button" value="复制此代码"/><br/> [Ctrl+A 全部选择 提示：你可先修改部分代码，再按运行]</div></div>]]></description>
		</item>
		
			<item>
			<link>http://www.7mblue.com/help/default.asp?id=1321</link>
			<title><![CDATA[清除系统淤塞的垃圾]]></title>
			<author>hhq1338@163.com(静一)</author>
			<category><![CDATA[PC]]></category>
			<pubDate>Sun,18 May 2008 16:08:33 +0800</pubDate>
			<guid>http://www.7mblue.com/help/default.asp?id=1321</guid>	
		<description><![CDATA[为你的电脑系统清除淤塞的垃圾！轻松流畅上网你是否注意到你的电脑系统磁盘的可用空间正在一天天在减少呢？是不是像老去的猴王一样动作一天比一天迟缓呢？没错！在Windows在安装和使用过程中都会产生相当多的垃圾文件，包括临时文件（如：*.tmp、*._mp）日志文件（*.log）、临时帮助文件（*.gid）、磁盘检查文件（*.chk）、临时备份文件（如：*.old、*.bak）以及其他临时文件。特别是如果一段时间不清理IE的临时文件夹“Temporary Internet Files”，其中的缓存文件有时会占用上百MB的磁盘空间。这些LJ文件不仅仅浪费了宝贵的磁盘空间，严重时还会使系统运行慢如蜗牛。这点相信你肯定忍受不了吧！所以应及时清理系统的LJ文件的淤塞，保持系统的“苗条”身材，轻松流畅上网！朋友来吧，现在就让我们一起来快速清除系统LJ吧！！<br/><br/>新建一个记事本并输入以下的内容：<br/>@echo off<br/>echo 正在清除系统垃圾文件，请稍等......<br/>del /f /s /q %systemdrive%\*.tmp<br/>del /f /s /q %systemdrive%\*._mp<br/>del /f /s /q %systemdrive%\*.log<br/>del /f /s /q %systemdrive%\*.gid<br/>del /f /s /q %systemdrive%\*.chk<br/>del /f /s /q %systemdrive%\*.old<br/>del /f /s /q %systemdrive%\recycled\*.*<br/>del /f /s /q %windir%\prefetch\*.*<br/>rd /s /q %windir%\temp &amp; md %windir%\temp<br/>del /f /q %userprofile%\recent\*.*<br/>del /f /s /q &#34;%userprofile%\Local Settings\Temporary Internet Files\*.*&#34;<br/>del /f /s /q &#34;%userprofile%\Local Settings\Temp\*.*&#34;<br/>del /f /s /q &#34;%userprofile%\recent\*.*&#34;<br/>echo 清除系统LJ完成！<br/>echo. &amp; pause <br/><br/>      最后将它保存，然后更名为“Slim_system.bat”(记得要把后缀.txt也改掉哦)！ok！你的LJ清除器就这样制作成功了！<br/>      以后只要双击运行该文件，当屏幕提示“清除系统LJ完成！就还你一个“苗条”的系统了！！到时候再看看你的电脑，是不是急速如飞呢？可别忘了回帖喔！<br/><br/>PS：运行该文件的最好条件是在刚刚开机，没打开什么程序的前提下运行。这样清理得比较干净点。而最最好就是重启到安全模式底下运行，这样可能会更加彻底。<br/><br/>]]></description>
		</item>
		
			<item>
			<link>http://www.7mblue.com/help/default.asp?id=1320</link>
			<title><![CDATA[IE6下为什么图片下方有空隙产生]]></title>
			<author>hhq1338@163.com(7mblue)</author>
			<category><![CDATA[CSS]]></category>
			<pubDate>Fri,16 May 2008 17:03:03 +0800</pubDate>
			<guid>http://www.7mblue.com/help/default.asp?id=1320</guid>	
		<description><![CDATA[解决这个BUG的方法也有很多，可以是改变html的排版，或者定义img 为display:block<br/>或者定义vertical-align属性值为vertical-align:top | bottom |middle |text-bottom<br/>还可以设置父容器的字体大小为零，font-size:0<br/><br/><div class="UBBPanel"><div class="UBBTitle"><img src="http://www.7mblue.com/help/images/code.gif" style="margin:0px 2px -3px 0px" alt="程序代码"/> 程序代码</div><div class="UBBContent">&lt;!DOCTYPE html PUBLIC &#34;-//W3C//DTD XHTML 1.0 Strict//EN&#34; &#34;<a href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd" target="_blank">http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd</a>&#34;&gt;<br/>&lt;html xmlns=&#34;<a href="http://www.w3.org/1999/xhtml" target="_blank">http://www.w3.org/1999/xhtml</a>&#34; xml:lang=&#34;zh&#34; lang=&#34;zh&#34;&gt;<br/>&lt;head profile=&#34;<a href="http://www.w3.org/2000/08/w3c-synd/" target="_blank">http://www.w3.org/2000/08/w3c-synd/</a>#&#34;&gt;<br/>&lt;meta http-equiv=&#34;content-language&#34; content=&#34;zh-cn&#34; /&gt;<br/>&lt;meta http-equiv=&#34;content-type&#34; content=&#34;text/html;charset=gb2312&#34; /&gt;<br/>&lt;title&gt;blueidea&lt;/title&gt;<br/>&lt;style type=&#34;text/css&#34;&gt;<br/>/*&lt;![CDATA[*/<br/>div {<br/>&#160;&#160;&#160;&#160;border:1px solid red;<br/>&#160;&#160;&#160;&#160;background:orange;<br/>&#160;&#160;&#160;&#160;}<br/>img {<br/>&#160;&#160;&#160;&#160;width:276px;<br/>&#160;&#160;&#160;&#160;height:110px;<br/>&#160;&#160;&#160;&#160;}<br/>/*]]&gt;*/<br/>&lt;/style&gt;<br/>&lt;/head&gt;<br/>&lt;body&gt;<br/>&lt;div&gt;<br/>&lt;img src=&#34;<a href="http://www.google.com/intl/en_ALL/images/logo.gif" target="_blank">http://www.google.com/intl/en_ALL/images/logo.gif</a>&#34; alt=&#34;google&#34; /&gt;<br/>&lt;/div&gt;<br/>&lt;/body&gt;<br/>&lt;/html&gt;</div></div>]]></description>
		</item>
		
			<item>
			<link>http://www.7mblue.com/help/default.asp?id=1319</link>
			<title><![CDATA[ff下为什么父容器的高度不能自适应]]></title>
			<author>hhq1338@163.com(7mblue)</author>
			<category><![CDATA[CSS]]></category>
			<pubDate>Fri,16 May 2008 17:00:26 +0800</pubDate>
			<guid>http://www.7mblue.com/help/default.asp?id=1319</guid>	
		<description><![CDATA[为什么这个P撑不开DIV呢？解决的办法是在div 与 p 之间插入&lt;div style=&#34;clear:both&#34;&gt;&lt;/div&gt;清除掉这个p的浮动<br/><br/><div class="UBBPanel"><div class="UBBTitle"><img src="http://www.7mblue.com/help/images/code.gif" style="margin:0px 2px -3px 0px" alt="程序代码"/> 程序代码</div><div class="UBBContent">&lt;!DOCTYPE html PUBLIC &#34;-//W3C//DTD XHTML 1.0 Strict//EN&#34; &#34;<a href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd" target="_blank">http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd</a>&#34;&gt;<br/>&lt;html xmlns=&#34;<a href="http://www.w3.org/1999/xhtml" target="_blank">http://www.w3.org/1999/xhtml</a>&#34; xml:lang=&#34;zh&#34; lang=&#34;zh&#34;&gt;<br/>&lt;head profile=&#34;<a href="http://www.w3.org/2000/08/w3c-synd/" target="_blank">http://www.w3.org/2000/08/w3c-synd/</a>#&#34;&gt;<br/>&lt;meta http-equiv=&#34;content-language&#34; content=&#34;zh-cn&#34; /&gt;<br/>&lt;meta http-equiv=&#34;content-type&#34; content=&#34;text/html;charset=gb2312&#34; /&gt;<br/>&lt;title&gt;blueidea&lt;/title&gt;<br/>&lt;style type=&#34;text/css&#34;&gt;<br/>/*&lt;![CDATA[*/<br/>div {<br/>&#160;&#160;&#160;&#160;width:200px;<br/>&#160;&#160;&#160;&#160;border:1px solid red<br/>&#160;&#160;&#160;&#160;}<br/>p {<br/>&#160;&#160;&#160;&#160;float:left;<br/>&#160;&#160;&#160;&#160;width:100px;<br/>&#160;&#160;&#160;&#160;}<br/>/*]]&gt;*/<br/>&lt;/style&gt;<br/>&lt;/head&gt;<br/>&lt;body&gt;<br/>&lt;div&gt;&lt;p&gt;web标准常见问题大全web标准常见问题大全web标准常见问题大全web标准常见问题大全web标准常见问题大全web标准常见问题大全web标准常见问题大全web标准常见问题大全web标准常见问题大全web标准常见问题大全web标准常见问题大全web标准常见问题大全web标准常见问题大全web标准常见问题大全web标准常见问题大全web标准常见问题大全web标准常见问题大全web标准常见问题大全web标准常见问题大全web标准常见问题大全web标准常见问题大全web标准常见问题大全web标准常见问题大全web标准常见问题大全web标准常见问题大全web标准常见问题大全web标准常见问题大全web标准常见问题大全web标准常见问题大全web标准常见问题大全web标准常见问题大全web标准常见问题大全web标准常见问题大全web标准常见问题大全web标准常见问题大全web标准常见问题大全web标准常见问题大全web标准常见问题大全web标准常见问题大全web标准常见问题大全web标准常见问题大全web标准常见问题大全&lt;/p&gt;&lt;/div&gt;<br/>&lt;/body&gt;<br/>&lt;/html&gt;</div></div>]]></description>
		</item>
		
			<item>
			<link>http://www.7mblue.com/help/default.asp?id=1318</link>
			<title><![CDATA[IE6使用滤镜使PNG图片透明后，容器内链接失效的问题]]></title>
			<author>hhq1338@163.com(7mblue)</author>
			<category><![CDATA[CSS]]></category>
			<pubDate>Fri,16 May 2008 16:58:59 +0800</pubDate>
			<guid>http://www.7mblue.com/help/default.asp?id=1318</guid>	
		<description><![CDATA[解决方法是为链接定义一个相对定位属性。position:relative<br/><br/><div class="UBBPanel"><div class="UBBTitle"><img src="http://www.7mblue.com/help/images/code.gif" style="margin:0px 2px -3px 0px" alt="程序代码"/> 程序代码</div><div class="UBBContent">&lt;!DOCTYPE html PUBLIC &#34;-//W3C//DTD XHTML 1.0 Strict//EN&#34; &#34;<a href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd" target="_blank">http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd</a>&#34;&gt;<br/>&lt;html xmlns=&#34;<a href="http://www.w3.org/1999/xhtml" target="_blank">http://www.w3.org/1999/xhtml</a>&#34; xml:lang=&#34;zh&#34; lang=&#34;zh&#34;&gt;<br/>&lt;head profile=&#34;<a href="http://www.w3.org/2000/08/w3c-synd/" target="_blank">http://www.w3.org/2000/08/w3c-synd/</a>#&#34;&gt;<br/>&lt;meta http-equiv=&#34;content-language&#34; content=&#34;zh-cn&#34; /&gt;<br/>&lt;meta http-equiv=&#34;content-type&#34; content=&#34;text/html;charset=gb2312&#34; /&gt;<br/>&lt;title&gt;blueidea&lt;/title&gt;<br/>&lt;style type=&#34;text/css&#34;&gt;<br/>/*&lt;![CDATA[*/<br/>div {<br/>&#160;&#160;&#160;&#160;width:401px;<br/>&#160;&#160;&#160;&#160;height:223px;<br/>&#160;&#160;&#160;&#160;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod=&#39;scale&#39;, src=&#39;<a href="http://bbs.blueidea.com/attachments/2006/9/11/bg_nT9Vi2i45To0.png" target="_blank">http://bbs.blueidea.com/attachments/2006/9/11/bg_nT9Vi2i45To0.png</a>&#39;)<br/>&#160;&#160;&#160;&#160;}<br/>/*]]&gt;*/<br/>&lt;/style&gt;<br/>&lt;/head&gt;<br/>&lt;body&gt;<br/>&lt;div&gt;&lt;a href=&#34;#&#34;&gt;27.IE6使用滤镜使PNG图片透明后，容器内链接失效的问题。&lt;/a&gt;&lt;/div&gt;<br/>&lt;/body&gt;<br/>&lt;/html&gt;</div></div>]]></description>
		</item>
		
			<item>
			<link>http://www.7mblue.com/help/default.asp?id=1317</link>
			<title><![CDATA[复制到系统剪贴板之IE,ff兼容版]]></title>
			<author>hhq1338@163.com(7mblue)</author>
			<category><![CDATA[JS]]></category>
			<pubDate>Fri,16 May 2008 16:57:15 +0800</pubDate>
			<guid>http://www.7mblue.com/help/default.asp?id=1317</guid>	
		<description><![CDATA[<div class="UBBPanel"><div class="UBBTitle"><img src="http://www.7mblue.com/help/images/code.gif" style="margin:0px 2px -3px 0px" alt="程序代码"/> 程序代码</div><div class="UBBContent"><br/>&lt;!DOCTYPE html PUBLIC &#34;-//W3C//DTD XHTML 1.0 Strict//EN&#34; &#34;<a href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd" target="_blank">http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd</a>&#34;&gt;<br/>&lt;script type=&#34;text/javascript&#34;&gt;<br/>// &lt;![CDATA[<br/>function copy_clip(copy){<br/>if (window.clipboardData){<br/>window.clipboardData.setData(&#34;Text&#34;, copy);}<br/>else if (window.netscape){<br/>netscape.security.PrivilegeManager.enablePrivilege(&#39;UniversalXPConnect&#39;);<br/>var clip = Components.classes[&#39;@mozilla.org/widget/clipboard;1&#39;].cr&#101;ateInstance(Components.interfaces.nsIClipboard);<br/>if (!clip) return;<br/>var trans = Components.classes[&#39;@mozilla.org/widget/transferable;1&#39;].cr&#101;ateInstance(Components.interfaces.nsITransferable);<br/>if (!trans) return;<br/>trans.addDataFlavor(&#39;text/unicode&#39;);<br/>var str = new Object();<br/>var len = new Object();<br/>var str = Components.classes[&#34;@mozilla.org/supports-string;1&#34;].cr&#101;ateInstance(Components.interfaces.nsISupportsString);<br/>var copytext=copy;<br/>str.data=copytext;<br/>trans.setTransferData(&#34;text/unicode&#34;,str,copytext.length*2);<br/>var clipid=Components.interfaces.nsIClipboard;<br/>if (!clip) return false;<br/>clip.setData(trans,null,clipid.kGlobalClipboard);}<br/>alert(&#34;已复制&#34;+copy)<br/>return false;<br/>}<br/>// ]]&gt;<br/>&lt;/script&gt;<br/>&lt;h1&gt;请另存代码测试&lt;/h1&gt;<br/>&lt;input type=&#34;text&#34; id=&#34;ff&#34; value=&#34;www.blueidea.com&#34; /&gt;&lt;button onclick=&#34;copy_clip(document.getElementById(&#39;ff&#39;).value)&#34;&gt;复制<br/>&lt;/button&gt;<br/></div></div>]]></description>
		</item>
		
			<item>
			<link>http://www.7mblue.com/help/default.asp?id=1316</link>
			<title><![CDATA[通用的加入收藏夹代码]]></title>
			<author>hhq1338@163.com(7mblue)</author>
			<category><![CDATA[JS]]></category>
			<pubDate>Fri,16 May 2008 16:55:32 +0800</pubDate>
			<guid>http://www.7mblue.com/help/default.asp?id=1316</guid>	
		<description><![CDATA[经常有朋友说他的加入收藏夹代码只支持IE,上面的例子可以很好的解决这个问题,在IE6-7. FF2.0  OP9.0中测试通过<br/><br/><div class="UBBPanel"><div class="UBBTitle"><img src="http://www.7mblue.com/help/images/html.gif" style="margin:0px 2px -3px 0px"> HTML代码</div><div class="UBBContent"><TEXTAREA rows="8" id="temp81902">
<script type=&#34;text/javascript&#34;>
// <![CDATA[
function bookmark(){
var title=document.title
var url=document.location.href
if (window.sidebar) window.sidebar.addPanel(title, url,&#34;&#34;);
else if( window.opera &amp;&amp; window.print ){
var mbm = document.cr&#101;ateElement('a');
mbm.setAttribute('rel','sidebar');
mbm.setAttribute('href',url);
mbm.setAttribute('title',title);
mbm.click();}
else if( document.all ) window.external.AddFavorite( url, title);
}
// ]]>
</script>
<a href=&#34;javascript:bookmark()&#34;>加入收藏夹</a>
</TEXTAREA><br/><INPUT onclick="runEx('temp81902')"  type="button" value="运行此代码"/> <INPUT onclick="doCopy('temp81902')"  type="button" value="复制此代码"/><br/> [Ctrl+A 全部选择 提示：你可先修改部分代码，再按运行]</div></div>]]></description>
		</item>
		
</channel>
</rss>