BUG of odd width and height in IE6

BUG of odd width and height in IE6

As shown in the figure:

14_145449_22008104223759

But when viewed under IE6, it becomes right:1px:

14_145538_62008104223844

IE6 still has a bug with odd widths and heights. The solution is to change the width of the external relatively positioned div to an even number. The height is the same <br />View source code:

CSS code:

#out {
width: 609px;/*The width here is an odd number, so a bug will occur! ! Change it to an even number and it will be OK*/
height: 300px;
position: relative;
background:#FF0000;
color:#FFF;
}
#inn {
width: 200px;
height: 250px;
position: absolute;
top: 0px;
right: 0px;
background:#000000;
}

XML/HTML code:

<div id="out">
<div id="inn">This is the internal absolutely positioned DIV</div>
</div>

<<:  Solve the docker.socket permission problem of vscode docker plugin

>>:  HTML tag default style arrangement

Recommend

HTML realizes hotel screening function through form

<!doctype html> <html xmlns="http:/...

Implementation method of Mysql tree recursive query

Preface For tree-structured data in the database,...

Detailed summary of mysql sql statements to create tables

mysql create table sql statement Common SQL state...

Batch replace part of the data of a field in Mysql (recommended)

Batch replace part of the data of a field in MYSQ...

How to use Docker+DockerCompose to encapsulate web applications

Table of contents Technology Stack Backend build ...

Web Design Tutorial (6): Keep your passion for design

<br />Previous article: Web Design Tutorial ...

Example of integrating Kafka with Nginx

background nginx-kafka-module is a plug-in for ng...

Solve the problem that Navicat cannot connect to MySQL on the Linux server

At the beginning, I felt sad. The screenshots are...

A brief discussion on the definition and precautions of H tags

Judging from the results, there is no fixed patte...

Vue uses vue-quill-editor rich text editor and uploads pictures to the server

Table of contents 1. Preparation 2. Define the gl...

3 codes for automatic refresh of web pages

In fact, it is very simple to achieve this effect,...

Input file custom button beautification (demo)

I have written such an article before, but I used...