DIV CSS performance in different browsers_html/css_WEB-ITnose
??
During the process of training DIV CSS to employees, they asked me a lot of questions. Some of them I didn’t even think of, so I took some time to conduct some experiments myself. All The experiment was conducted in IE7 and Firefox:Experiment 1. If a div does not specify the border attribute, will this div have a border in the browser?
Result: IE7: No. Firefox: No.
Experiment 2: If a div only specifies the thickness value of the border attribute, will this div have a border in the browser?
Result: IE7: No. Firefox: No.
Experiment 3: If a div specifies the thickness value of the border attribute and also specifies the color value of the border attribute, will this div have a border in the browser?
Result: IE7: No Firefox: No.
Experiment 4: If a div only specifies the thickness value and style of the border attribute, will this div have a border in the browser?
Result: IE7: Yes, the default color is black Firefox: Yes, the default color is black.
Experiment 5: If a div only specifies the style of the border attribute, will this div have a border in the browser?
Results: IE7: Yes, the default color is black Firefox: Yes, the default color is black.
Experiment 6. If a div does not specify width and height, what shape will the div look like in the browser?
Result: IE7: width is 100%, height is 0; Firefox: width is 100%, height is 0.
Experiment 7. If a div has a specified width but no height, what shape will the div look like in the browser?
Result: IE7: has a certain height; Firefox: the height is 0;
Experiment 8. Two divs with parent-child relationships. Parent: #father and child: #son. The CSS code is as follows:
#father{
border:solid red 1px;
height:300px;
width:100px;
}
#son
{
border :1px black solid;
margin-right:100px;
width:100%;
}
So what is the actual width of father in the browser?
Result: IE7: width is 100px; Firefox: width is 100px;
Experiment 9. If a div does not specify its alignment on the page, what is its position on the page?
Result: IE7: left-aligned; Firefox: left-aligned.
Experiment 10. Two parent-child relationship divs, #father, #son. If text-align=center is specified in father, what is the position of son in the browser?
Result: IE7: Center-aligned relative to father; Firefox: Left-aligned relative to father.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



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

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

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

HTML is suitable for beginners because it is simple and easy to learn and can quickly see results. 1) The learning curve of HTML is smooth and easy to get started. 2) Just master the basic tags to start creating web pages. 3) High flexibility and can be used in combination with CSS and JavaScript. 4) Rich learning resources and modern tools support the learning process.

The article discusses the viewport meta tag, essential for responsive web design on mobile devices. It explains how proper use ensures optimal content scaling and user interaction, while misuse can lead to design and accessibility issues.

The article discusses the <iframe> tag's purpose in embedding external content into webpages, its common uses, security risks, and alternatives like object tags and APIs.

HTML defines the web structure, CSS is responsible for style and layout, and JavaScript gives dynamic interaction. The three perform their duties in web development and jointly build a colorful website.

AnexampleofastartingtaginHTMLis,whichbeginsaparagraph.StartingtagsareessentialinHTMLastheyinitiateelements,definetheirtypes,andarecrucialforstructuringwebpagesandconstructingtheDOM.
