Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

BUG: You cannot reduce the top margin and the bottom margin of the horizontal rule element to nothing by using CSS


Symptoms

You cannot reduce the top margin and the bottom margin of the horizontal rule (HR) tag to nothing by using cascading style sheets (CSS). When the CSS style margin:auto is applied to the HR elements in Microsoft Internet Explorer, the top margin and the bottom margin are maintained. You can see the symptoms of the problem if you put the following sample code in a text file.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
   <head>
      <style type="text/css">
<!-- 
      hr { margin-top: auto; margin-bottom: auto;}
      .RedRule { border: none; border-bottom: 1px solid red; }
-->
      </style>
	</head>
   <body>
      Text Above
      <hr>
      <hr noshade class="RedRule">
      <hr>
      Text Below
   </body>
</html>
Save the text file with either an .htm file name extension or with an .html file name extension. Then, view the file by using Internet Explorer.

↑ Back to the top


Workaround

The following workarounds use DIV tags instead of HR tags:

Workaround 1

Use an HR tag that is contained inside a DIV tag. This provides better backward compatibility with browsers that do not support DIV tags or CSS. This is the recommended workaround.

Workaround 2

Use the font-size style to provide the height for the DIV tag.

Workaround 3

Use an empty DIV tag inside a styled DIV tag to provide the height for the DIV tag.

The following sample code demonstrates the workarounds:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
   <head>
      <title>Zero margin horizontal rule workarounds in Internet Explorer</title>
      <style type="text/css">
<!--
      div.RedRule {
      border: 1px solid gray;
      background-color: red;
      height: 1px;
      }
      div.RedRule hr {    /* for CSS1 browsers */
      display: none;
      }
      div.RedRule * {     /* for CSS2 browsers */
      display: none;
      }
-->
      </style>
   </head>
   <body>
      <h2>Zero margin horizontal rule workarounds in Internet Explorer</h2>
      <p>There are three DIV tags. HR tags are inside for down-level compatibility.</p>
      <div class="RedRule" style="background-color: blue;"><hr></div>
      <div class="RedRule"><hr></div>
      <div class="RedRule" style="background-color: blue;"><hr></div>
	
      <p>There are three DIV tags. Height is specified by font-size.</p>
      <div class="RedRule" style="font-size: 1px; background-color: blue;">&nbsp;</div>
      <div class="RedRule" style="font-size: 1px;">&nbsp;</div>
      <div class="RedRule" style="font-size: 1px; background-color: blue;">&nbsp;</div>

      <p>There are three DIV tags. Each one contains a DIV for height:</p>
      <div class="RedRule" style="background-color: blue;"><div></div></div>
      <div class="RedRule"><div></div></div>
      <div class="RedRule" style="background-color: blue;"><div></div></div>
   </body>
</html>

Note The document type definition (DTD) specification at the beginning of the sample code is required for Internet Explorer to support Workaround 1 and Workaround 3. This is because the border location of the DIV tag is treated differently based on the DTD specification.

↑ Back to the top


References

For additional information, visit the following Microsoft Developer Network (MSDN) Web sites:

CSS enhancements in Internet Explorer 6
Margin attribute | Margin property
HR element | HR object

↑ Back to the top


Properties

Retired KB Content Disclaimer
This article was written about products for which Microsoft no longer offers support. Therefore, this article is offered "as is" and will no longer be updated.

↑ Back to the top


Keywords: KB883631, kbmshtml, kbFAQ, kbinetdev, kbcssi, kbbug, kbprb, kbtshoot

↑ Back to the top

Article Info
Article ID : 883631
Revision : 2
Created on : 6/20/2014
Published on : 6/20/2014
Exists online : False
Views : 115