Home  >  Article  >  Web Front-end  >  做网页的一些技巧_基础知识

做网页的一些技巧_基础知识

WBOY
WBOYOriginal
2016-05-16 19:20:01891browse
加入收藏夹代码

ie地址栏图标


把名为 favicon.ico 大小 16X16 的图标放到网页的根目录

长度自适应的div

嵌套DIV:父DIV的高度不能根据子DIV自动变化的解决方案


   
 


当Content内容多时,即使parent设置了高度100%或auto,在不同浏览器下还是不能完好的自动伸展。 解决方案

  

  
 


在层的最下方产生一个高度为1的空格,可解除这个问题

JAVA容错代码

    一些网页用了JAVA程序时容易出现脚本错误,下面就是为解决次问题而从网上搜索而来的代码,希望对你有用!

function killErrors() {
return true;
}

window.onerror = killErrors;

// -->

本文一些代码来自www.pjhome.net

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn