spacer

Webref WebRef   Sitemap · Experts · Tools · Services · Newsletters · About i.com


home / experts / dhtml / column61

Developer News
News Flash: Adobe Has iPhone Workaround
Adobe's Flash 10.1 Goes Mobile (Minus iPhone)
A Salute to Visionary CEOs

Logo

Hiermenus Go Forth, XXV:
Version 4.1.3 - The Complete Script (Full-Window)



Consider the following one-line-display HTML page:

<HTML STYLE="background:pink">
<HEAD>
<TITLE>Old BODY</TITLE>
</HEAD>

<BODY STYLE="position:absolute;
             left:50px;top:50px;
             height:80px;width:180px;
             margin:20px;padding:10px;
             background:yellow;">

hello

</BODY>
</HTML>
The HTML above, without a !DOCTYPE declaration, causes IE6 to render in backward-compatible, regular run-of-the-mill IE mode. The background color applied to the HTML element is ignored, as are the position, left, top, height and width style declaration properties.




<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
      "http://www.w3.org/TR/REC-html40/loose.dtd">

<HTML STYLE="background:pink">
<HEAD>
<TITLE>New BODY</TITLE>
</HEAD>

<BODY STYLE="position:absolute;
             left:50px;top:50px;
             height:80px;width:180px;
             margin:20px;padding:10px;
             background:yellow;">

hello


</BODY>
</HTML>
The HTML above has a !DOCTYPE declaration. IE6 is forced to render in standards-compliance mode. Notice that the background color applied to the HTML element covers the whole browser window. The BODY element renders as a positioned element. All the style declaration properties are valid. The BODY element, therefore, is only the yellow rectangle in the center of the window.




But how does all this affect HM?


Produced by Peter Belesis and

internet.commediabistro.comJusttechjobs.comGraphics.com

Search:

WebMediaBrands Corporate Info

Legal Notices, Licensing, Reprints, Permissions, Privacy Policy.
Advertise | Newsletters | Shopping | E-mail Offers | Freelance Jobs

webref The latest from WebReference.com Browse >
Building a Banking Application Home Page with OOP · Mixing Scripting Languages · Review: phpFox, a Social Networking CMS with all the Bells and Whistles
Sitemap · Experts · Tools · Services · Email a Colleague · Contact FREE Newsletters 
 The latest from internet.com
Enterprise 2.0: Social Networking in the Cloud · BroadSoft Marketplace Hastens Pace of Telephony Innovation · Review: HTC Hero for Sprint

All Rights Reserved. Legal Notices.
Created: November 13, 2001
Revised: November 13, 2001

URL: http://www.webreference.com/dhtml/column61/3.html