IE6 implements min-width

IE6 implements min-width

First of all, we know that this effect should be an old topic.
When I was organizing files today, I found that some of my previous layout solutions had been lying in folders for a long time. I dug up some old stuff. It should be noted that I was fortunate enough to see the old engineer and webmaster of CSSPLAY implement this effect, and it must have been given very early.
Without further ado, here is the source code:
Trigger and utilize the weird features of IE6-layout, CSS implementation:
<style type="text/css">
.ie6-out{
_margin-left:900px;
_zoom:1;
}
.ie6-in{
_position:relative;
_float:left;
_margin-left:-900px;
}
#min-width{
min-width:900px;
background:#ccc;
line-height:200px;
_zoom:1;
}
</style>
<div class="ie6-out">
<div class="ie6-in">
<div id="min-width">Under ie6, the container simulates the min-width effect. Please resize your browser window as desired and click the "View Width" button. </div>
</div>
</div>
CSS implementation demonstration:
Run code box

[Ctrl A Select All Tip: You can modify part of the code first, then press Run]
Extended Demo:
Run code box

[Ctrl A Select All Tip: You can modify part of the code first, then press Run]
CSS Expression
——I believe that many people are often troubled by inexplicable crashes when using this method to achieve the minimum width of the container, and often end up in vain.
There are two points that need to be pointed out here:
1. The element representing the viewport in IE6-standard mode and quirk mode is different, the former is <html>, and the latter is <body>;
2. IE6- In the above two different modes, it has different manifestations when the contained content overflows, which leads to an infinite loop in the assignment judgment. This may sound a bit long-winded, so just practice it yourself.
CSS Expression to achieve minimum width source code: <style type="text/css">
body{ text-align:center;}
#min-width{
min-width:900px;
_width:expression((document.documentElement.clientWidth||document.body.clientWidth)<900?"900px":"");
line-height:200px;
background:#ccc;
}
</style>
<div id="min-width">Under ie6, the container simulates the min-width effect. Please resize your browser window as desired and click the "View Width" button. </div>
Demo:
Run code box

[Ctrl A Select All Tip: You can modify part of the code first, then press Run]
The above two solutions can be implemented in both IE6-standard mode and quirk mode. IE Expression also did not find any CPU efficiency issues in this application.

<<:  Several ways to change MySQL password

>>:  Docker starts Redis and sets the password

Recommend

How to Change Colors and Themes in Vim on Linux

Vim is a text editor that we use very often in Li...

Sample code for generating QR code using js

Some time ago, the project needed to develop the ...

How to create Baidu dead link file

There are two types of dead link formats defined b...

CSS to achieve the small sharp corner effect of bubbles

Effect picture (the border color is too light, pu...

Use simple jQuery + CSS to create a custom a tag title tooltip

Introduction Use simple jQuery+CSS to create a cus...

Simple comparison of meta tags in html

The meta tag is used to define file information an...

mysql 5.7.11 winx64.zip installation and configuration method graphic tutorial

Install and configure the MySql database system. ...

How to use fdisk to partition disk in Linux

Commonly used commands for Linux partitions: fdis...

Methods and steps to build nginx file server based on docker

1. Create a new configuration file docker_nginx.c...

The corresponding attributes and usage of XHTML tags in CSS

When I first started designing web pages using XH...

How to change MySQL character set utf8 to utf8mb4

For MySQL 5.5, if the character set is not set, t...

Implementation of TypeScript in React project

Table of contents 1. Introduction 2. Usage Statel...

How to find slow SQL statements in MySQL

How to find slow SQL statements in MySQL? This ma...