Home Web Front-end HTML Tutorial A brief discussion on browser compatibility issues-(2) Understanding and accumulation of my own solutions_html/css_WEB-ITnose

A brief discussion on browser compatibility issues-(2) Understanding and accumulation of my own solutions_html/css_WEB-ITnose

Jun 24, 2016 pm 12:07 PM

#浅谈浏览器兼容性问题-(2)本人解决方案理解与积累##前言 接着[前一篇](http://www.cnblogs.com/p2227/p/3593087.html)吧,我们除了正确看待,还要有一定的解决方案积累。当然,IE没有公开的源代码,所以有很多内容只能是记录,在使用中熟记于心并提前避免。##【HTML/CSS】名(chou)扬(ming)天(yuan)下(bo)的IE6双倍边距问题###思考网上有很多关于该问题的文章,园子里面也有很多,[戳我](http://www.cnblogs.com/YAOXI/articles/1691265.html)。这些大多是从“已知问题”的角度去解决,但我们的浏览器不会在发现问题的时候alert一个框告诉你:出现IE6双倍边距BUG啦!正向面对问题时,我们只有现象,出现这个BUG很常见的现象是,**在其他浏览器中排版很好的界面,在IE6中有元素被挤下去了**。如果出现这个问题,则要考虑这个BUG了,当然,能提前避免会更加好。###解决方案(简略)* `display:inline;`* `_margin:一半的边距;`##【HTML/CSS】IE6PNG透明问题###思考* gif也有透明功能,但只能不透明或者全透明,不能提供基于alpha值的半透明解决方案,而png则能处理,但可恨的IE6并不直接支持png透明。* 之前有提及到微软有独家的滤镜功能,这里面有相关的解决方案###解决方案利用`AlphaImageLoader`滤镜,先针对其他浏览器正常载入背景,再针对IE6重设背景,相关CSS如下```.pngTransofrm{background:url(../images/index2q/bg_title.png) no-repeat; _background:none;/*解决IE6PNG不能透明的问题 */_filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="./images/index2q/bg_title.png"); /*解决IE6PNG不能透明的问题,注意要相对于HTML文件的png文件的位置 */}```[DEMO](http://gh.p2227.com/demo/BrowserCompatibility/IE6PNG/)###延伸* 此方案只针对背景。按照语义化HTML的思考,如果图片只是烘托,那应该用背景,如果该文章想表达的主题就是图片(比如相册)那么应该用img* 必须针对每一张图片写,滤镜中的路径要相对于HTML文件* 更多解决方案:[戳我](http://www.w3cfuns.com/thread-297-1-1.html)##【HTML/CSS】title属性的行为问题###问题及解决方案这里引用自己当年的一篇文章http://blog.csdn.net/p2227/article/details/7587641只检测到IE8下问题比较严重,由于代码是直接从IE8的F12中拷贝的,所以会有点不太规范。###延伸这是一个很细节的问题,但是前端就是要抓细节,抓用户体验。## 【HTML/CSS】文字描边(filter VS CSS3)###思考很多CSS3中新增的属性,在IE678时代都可以用滤镜去处理,以描边`text-shadow`为例,我们可以用`glow`滤镜去处理###解决方案[戳我](http://gh.p2227.com/demo/BrowserCompatibility/glow/)##【javascript】逗号处理问题###思考在IE678下,数组或JSON的最后一个逗号会被解释成undefined,其他浏览器会按W3C标准忽略。###解决方案本人之前的[优化方案](http://www.cnblogs.com/p2227/p/3541162.html)中有提及,利用正则表达式`,\s*[\r\n][\r\n]\s*\} `在项目源文件中搜索相关代码[DEMO](http://gh.p2227.com/demo/BrowserCompatibility/JSONComma/)## 【javascript】location跳转与return false ###问题及解决方案在IE6中,`
Copy after login

Statement of this Website
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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Difficulty in updating caching of official account web pages: How to avoid the old cache affecting the user experience after version update? Difficulty in updating caching of official account web pages: How to avoid the old cache affecting the user experience after version update? Mar 04, 2025 pm 12:32 PM

The official account web page update cache, this thing is simple and simple, and it is complicated enough to drink a pot of it. You worked hard to update the official account article, but the user still opened the old version. Who can bear the taste? In this article, let’s take a look at the twists and turns behind this and how to solve this problem gracefully. After reading it, you can easily deal with various caching problems, allowing your users to always experience the freshest content. Let’s talk about the basics first. To put it bluntly, in order to improve access speed, the browser or server stores some static resources (such as pictures, CSS, JS) or page content. Next time you access it, you can directly retrieve it from the cache without having to download it again, and it is naturally fast. But this thing is also a double-edged sword. The new version is online,

How to efficiently add stroke effects to PNG images on web pages? How to efficiently add stroke effects to PNG images on web pages? Mar 04, 2025 pm 02:39 PM

This article demonstrates efficient PNG border addition to webpages using CSS. It argues that CSS offers superior performance compared to JavaScript or libraries, detailing how to adjust border width, style, and color for subtle or prominent effect

How do I use HTML5 form validation attributes to validate user input? How do I use HTML5 form validation attributes to validate user input? Mar 17, 2025 pm 12:27 PM

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

What is the purpose of the <datalist> element? What is the purpose of the <datalist> element? Mar 21, 2025 pm 12:33 PM

The article discusses the HTML &lt;datalist&gt; element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

What are the best practices for cross-browser compatibility in HTML5? What are the best practices for cross-browser compatibility in HTML5? Mar 17, 2025 pm 12:20 PM

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

What is the purpose of the <progress> element? What is the purpose of the <progress> element? Mar 21, 2025 pm 12:34 PM

The article discusses the HTML &lt;progress&gt; element, its purpose, styling, and differences from the &lt;meter&gt; element. The main focus is on using &lt;progress&gt; for task completion and &lt;meter&gt; for stati

What is the purpose of the <meter> element? What is the purpose of the <meter> element? Mar 21, 2025 pm 12:35 PM

The article discusses the HTML &lt;meter&gt; element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates &lt;meter&gt; from &lt;progress&gt; and ex

How do I use the HTML5 <time> element to represent dates and times semantically? How do I use the HTML5 <time> element to represent dates and times semantically? Mar 12, 2025 pm 04:05 PM

This article explains the HTML5 &lt;time&gt; element for semantic date/time representation. It emphasizes the importance of the datetime attribute for machine readability (ISO 8601 format) alongside human-readable text, boosting accessibilit

See all articles