|
50条网页制作小技巧集锦(1)
控制横向和纵向滚动条的显隐?---------</iframe>设为首页:---------
文字或图片弹出指定大小的窗口
在body中加入
<scriptlanguage="JavaScript"type="text/JavaScript">
functionMM_openBrWindow(theURL,winName,features){window.open(theURL,winName,features);}
</script>
弹出代码
<ahref="#"target="_self"onClick="MM_openBrWindow('windows01.htm','','width=550,height=380')"width="550"height="380"border="0">图片或文字</a>
--------------------------------------------------------------------------------
FLASH按钮加链接
on(press){
getURL("http://www.makewing.com","_blank");
}
--------------------------------------------------------------------------------
跳转页面代码
<metahttp-equiv="refresh"content="5;url=http://www.makewing.com">
--------------------------------------------------------------------------------
细线分隔线
<hrnoshadesize=0color=#C0C0C0>
--------------------------------------------------------------------------------
网页中的自动换行
<tdstyle="Word-break:break-all">就搞定了。
|