惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

S
Secure Thoughts
罗磊的独立博客
T
The Blog of Author Tim Ferriss
人人都是产品经理
人人都是产品经理
博客园 - 叶小钗
Last Week in AI
Last Week in AI
美团技术团队
Google Online Security Blog
Google Online Security Blog
Application and Cybersecurity Blog
Application and Cybersecurity Blog
D
Docker
G
Google Developers Blog
大猫的无限游戏
大猫的无限游戏
酷 壳 – CoolShell
酷 壳 – CoolShell
小众软件
小众软件
月光博客
月光博客
L
LINUX DO - 最新话题
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
W
WeLiveSecurity
H
Heimdal Security Blog
Vercel News
Vercel News
SecWiki News
SecWiki News
Forbes - Security
Forbes - Security
Blog — PlanetScale
Blog — PlanetScale
Google DeepMind News
Google DeepMind News
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
www.infosecurity-magazine.com
www.infosecurity-magazine.com
TaoSecurity Blog
TaoSecurity Blog
T
Troy Hunt's Blog
A
About on SuperTechFans
C
Check Point Blog
S
Security Affairs
Hacker News - Newest:
Hacker News - Newest: "LLM"
AI
AI
WordPress大学
WordPress大学
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
Help Net Security
Help Net Security
博客园_首页
The Last Watchdog
The Last Watchdog
S
SegmentFault 最新的问题
Hugging Face - Blog
Hugging Face - Blog
Security Archives - TechRepublic
Security Archives - TechRepublic
Engineering at Meta
Engineering at Meta
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
I
Intezer
K
Kaspersky official blog
M
MIT News - Artificial intelligence
J
Java Code Geeks
G
GRAHAM CLULEY
P
Palo Alto Networks Blog

博客园 - 老弹

列表中,将列表字段缩略显示的样式 VS.NET 2008 发布站点,不带那些随机字符的网站发布插件 下拉菜单被flash挡住的最好解决方法 html导出word - 老弹 - 博客园 全球网络概况 IE不执行js脚本的解决方法 ToString格式大全 - 老弹 - 博客园 SQL语句关键字UNION小知识 关于PayPal的支付的问题 运行 Dcpromo 架设Active Directory (活动目录 )时,出现" 无法创建 GPO " 错误信息 .NET读写INI文件 document.location 这个对象包含了当前URL的信息 VBScript判断客户端是否需要下载控件 强制将在表格中将英文字母换行的CSS样式,加在表格table标签中 无法让网页另存为的代码 屏蔽IE中当图片太大时出现的图片按钮组的CSS样式 列出一个表中的某个字段重复的记录 分割以逗号作为分割符号的字符串并插入到表中 求助 RemObjects SDK 与 Data Abstracr
DIV+CSS页面布局,样式中区别苹果浏览器Safari
老弹 · 2008-09-01 · via 博客园 - 老弹

最近外接了一个国外项目的外包服务,客户要求严格,页面所有布局全部采用DIV+CSS,页面要兼容于IE6、IE7、Firefox、Safari 等多种主流浏览器~~

天呐,何等大的工作量啊~  调疯了都会~ 没办法~ 得吃饭啊~~

刚从同事那找到了样式区别Safari浏览器的写法~ 

@media all and (min-width: 0px) {
      .className{
           style
      }
}

例如:
@media all and (min-width: 0px) {
      div.towing input.radioSelectedStyle{
      margin:0px;
      margin-right: 5px;
      margin-left:10px;
      width:8px;

      }

}

至于区别于IE6、IE7、Firefox,网上已经很多了 ~ 这里不做介绍,给个链接就好:

http://www.div-css.com/html/standard/hack/1136667.html

感谢jim同学,呵呵~