# Div tag settings not working in IE6

**URL:** https://forum.kirupa.com/t/div-tag-settings-not-working-in-ie6/214330
**Category:** web dev
**Created:** [January 27, 2007, 5:48pm UTC](https://forum.kirupa.com/t/div-tag-settings-not-working-in-ie6/214330 "2007-01-27T17:48:45Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![nickadocker](https://avatars.discourse-cdn.com/v4/letter/n/df705f/32.png) [@nickadocker](https://forum.kirupa.com/u/nickadocker)
#### Post date: [January 27, 2007, 5:48pm UTC](https://forum.kirupa.com/t/div-tag-settings-not-working-in-ie6/214330/1 "2007-01-27T17:48:45Z")

</div>

I’ve got an image placed inside a div tag where the div is set to a height and width of 100%. The div has a “fixed” position with a “left” value set to “-36px”, which ensure’s it shows up exactly where I want it to. Everything that I setup in the style sheet works fine with Firefox 1.5x; the problem - big surprise - is that it doesn’t work at all in IE6.

Basically what’s happening in IE is that the scroll bars are still showing up (which I don’t want to happen) and it doesn’t appear to be recognising the negative-positioning either.

I’m just now learning to use div tags so there’s probably some trick I haven’t figured out yet. Here’s the code I’m using.

```auto

<style type="text/css">
<!--
body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #566f5f;
    background-image: url(images/bg.gif);
    background-repeat: repeat-x;
    text-align: center;
}
#myTable {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    position: fixed;
    left: -36px;
}
-->
</style>
</head>

<body>
<div id="myTable"><img src="images/picture.jpg" width="1071" height="738" border="0" usemap="#Map" />
<map name="Map" id="Map">
<area shape="poly" coords="812,437,828,463,1038,409,1018,390" href="mailto:info@email_address.com" alt="Contact Us" />
</map></div>

```

As I mentioned, it works great in FF but not in IE. If anyone has any ideas or suggestions it would be a massive help 🙂

Thanks!
