chinaz

IE与Firefox的CSS兼容大全

房东的猫 提交于 2020-03-30 18:40:24
IE与Firefox的CSS兼容大全 CSS对浏览器器的兼容性具有很高的价值,通常情况下IE和Firefox存在很大的解析差异,这里介绍一下兼容要点。 火狐 css 常见兼容问题: 1、DOCTYPE 影响 CSS 处理 2、FF:div 设置 margin-left, margin-right 为 auto 时已经居中,IE 不行 3、FF: body 设置 text-align 时, div 需要设置 margin: auto(主要是 margin-left,margin-right) 方可居中 4、FF: 设置 padding 后, div 会增加 height 和 width, 但 IE 不会, 故需要用 !important 多设一个 height 和 width 5、FF: 支持 !important, IE 则忽略, 可用 !important 为 FF 特别设置样式 6、div 的垂直居中问题: vertical-align:middle; 将行距增加到和整个DIV一样高 line-height:200px; 然后插入文字,就垂直居中了。缺点是要控制内容不要换行 站长.站 7、cursor: pointer 可以同时在 IE FF 中显示游标手指状, hand 仅 IE 可以 8、FF: 链接加边框和背景色,需设置 display: block, 同时设置

做网站的各种推荐网

断了今生、忘了曾经 提交于 2020-02-27 02:52:59
国内网页设计网站网址大全 一、网页设计类 蓝色理想 http://www.blueidea.com 网页设计师联盟 http://www.68design.net 网页设计大本营 http://www.code-123.com 我爱设计网 http://www.52design.com 视觉中国 http://www.chinavisual.com 设计在线 http://www.dolcn.com 网易学院 http://tech.163.com/school 天极设计在线 http://art.yesky.com 二、图象处理类 设计中国(中国PHOTOSHOP联盟) http://www.chinaddu.com 图像谷 http://www.pstxg.com 三、动画设计类 闪客帝国  http://www.flashempire.com 闪吧 http://www.flash8.net 闪盟在线 http://www.flashsun.com 四、网页素材类 桌面城市 http://www.deskcity.com 素材精品屋  http://www.sucaiw.com 站酷(ZCOOL) http://www.zcool.com.cn E库素材 http://www.iecool.com 中国站长素材 http://sc.chinaz.com 五、程序开发类

11111111

坚强是说给别人听的谎言 提交于 2020-02-06 20:03:23
http://sc.chinaz.com/tubiao/ http://demo.sc.chinaz.com/Files/pic/iconsico/7590/e13.ico http://demo.sc.chinaz.com/Files/pic/iconsico/7590/e19.ico http://demo.sc.chinaz.com/Files/pic/iconsico/7590/e7.ico http://demo.sc.chinaz.com/Files/pic/iconsico/7590/e2.ico http://demo.sc.chinaz.com/Files/pic/iconsico/7590/e18.ico http://demo.sc.chinaz.com/Files/pic/iconsico/7590/e8.ico 来源: CSDN 作者: gggsskkk 链接: https://blog.csdn.net/gggsskkk/article/details/104197973

网站信息收集

牧云@^-^@ 提交于 2019-12-03 10:44:37
ip信息收集 http://whois.chinaz.com/ Whois查询 http://tool.chinaz.com/ 站长工具 https://dns.aizhan.com/ 爱站网 ping检测 ip反查域 https://x.threatbook.cn/ 微步在线 https://toolbar.netcraft.com/site_report 网站查询 http://tool.chinaz.com/nslookup dns 服务器解析 http://ping.chinaz.com/ping.chinaz.com 多地ping 检查dns是否存在 https://phpinfo.me/bing.php 在线旁站查询 c段 http://s.tool.chinaz.com/same 同ip查旁站 DNS历史解析 https://dnshistory.org/ http://whoisrequest.com/history/ https://completedns.com/dns-history/ http://dnstrails.com/ https://who.is/domain-history/ http://research.domaintools.com/research/hosting-history/ http://site.ip138.com/ http:

简历模板批量下载

浪子不回头ぞ 提交于 2019-11-28 14:51:05
简历模板批量下载 思路 1.首先研究分页,发现除了第一页请求特例,后面页数有规律 2.研究html,找到简历的下载界面 3.进入下载界面,找到下载链接 4.通过下载链接下载数据,保存本地 import requests from lxml import etree import os headers = { "User-Agent": "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36" } def work(page): if not os.path.exists("dic"): os.mkdir("dic") count=1 while count <= page: #第一页请求特殊,独立处理 if count == 1 : url="http://sc.chinaz.com/jianli/free.html" else: url=f"http://sc.chinaz.com/jianli/free_{count}.html" res=requests.get(url=url,headers=headers) res.encoding=res.apparent_encoding tree=etree.HTML