The image element img has extra blank space in IE6

The image element img has extra blank space in IE6

When doing DIV+CSS layout of the page, it is very common to encounter the problem of extra space under the image element img in IE6 (of course, it sometimes happens in Firefox). The solution to this problem is to "act according to the situation". Different solutions should be used according to different causes. Here are the common methods to solve the BUG of extra space under the image layout for your reference.
1. Convert the image into a block-level object
That is, set img to: display:block;
In this example, add a set of CSS code: #sub img {display:block;}
2. Set the vertical alignment of the image
That is, setting the vertical-align property of the image to "top, text-top, bottom, text-bottom" can also solve the problem. For example, add a set of CSS codes in this example: #sub img {vertical-align:top;}
3. Set the text size of the parent object to 0px
That is, add a line in #sub: font-size:0;
can solve the problem. But this also caused a new problem, the text in the parent object could not be displayed. Even if part of the text is enclosed by child objects, you can still display it by setting the child object text size, but when validating the CSS, an error message indicating that the text is too small will be displayed.
4. Change the properties of the parent object
If the width and height of the parent object are fixed, and the image size depends on the parent object, you can set overflow:hidden;
to solve. For example, you can add the following code to #sub: width:88px;height:31px;overflow:hidden;
5. Set the floating properties of the image
That is, add a line of CSS code in this example: #sub img {float:left;}
If you want to achieve mixed text and graphics, this method is a good choice.
This method should be emphasized. In actual development, this method may cause problems. Because when writing code, in order to make the code more semantic and hierarchical, it is inevitable to use the IDE to provide code indentation display, which will inevitably cause labels and other labels to be displayed in new lines, such as DW's "Apply Source Formatting" command. Therefore, this method can help us understand a situation in which a BUG occurs, but the specific solution depends on your own experience.

<<:  JavaScript pre-analysis, object details

>>:  How to package the project into docker through idea

Recommend

Vue sample code for implementing two-column horizontal timeline

Table of contents 1. Implement the component time...

MySQL graphical management tool Navicat installation steps

Table of contents Preface 1. Arrange the installa...

JS interview question: Can forEach jump out of the loop?

When I was asked this question, I was ignorant an...

MySQL query method with multiple conditions

mysql query with multiple conditions Environment:...

jQuery achieves fade-in and fade-out effects

Before using jQuery to complete the fade-in and f...

CSS pixels and solutions to different mobile screen adaptation issues

Pixel Resolution What we usually call monitor res...

MySQL uses events to complete scheduled tasks

Events can specify the execution of SQL code once...

HTML cellpadding and cellspacing attributes explained in pictures

Cell -- the content of the table Cell margin (tabl...

A brief analysis of the configuration items of the Angular CLI release path

Preface Project release always requires packaging...

Detailed explanation of command to view log files in Linux environment

Table of contents Preface 1. cat command: 2. more...

CentOS 7 builds hadoop 2.10 high availability (HA)

This article introduces how to build a high-avail...