网页技巧总汇

以前总结了一些技巧,但是没有没有写出来,以后,我会写出来,慢慢的总结。

1。网页中嵌入的QQ是否在线的代码:
<a target="blank" href="tencent://message/?uin=375817050&Site=eNet我的QQ号码&Menu=yes"><img border="0" width="74" height="23" SRC="http://wpa.qq.com/pa?p=1:375817050:1" alt="温伟的QQ号码"  /></a>

2。尽量使用style="border-collapse:collapse"这样可以使表格边框合并
同样的效果:table bgcolor=c1    td bgcolor=c2    table cellpadding=1 cellspacing=1 border=0

3。图片中嵌入链接,也叫图像映射 参考:http://www.ponds.com.cn/7daystolove/zhongxin.php
<img src="index/images/login.jpg" width="113" height="18" border="0" usemap="#Map" />
<map name="Map" id="Map">
<area shape="rect" coords="12,4,60,14" href="index/login.php" target="_self"/>  shape:rect,circ ,多边形poly
<area shape="rect" coords="68,3,108,15" href="index/reg.php" target="_self"/>
</map>


 

你可能感兴趣的:(技巧)