lachlanhardy (owner)

Fork Of

gist: 215766 by joshprice zoom:1 is a hack for IE to ...

Revisions

gist: 215775 Download_button fork
public
Public Clone URL: git://gist.github.com/215775.git
Embed All Files: show embed
IE6 and 7 header float bug #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<style>
.wrapper { border: 1px solid black; }
.wrapper h3 a { float: right; width: auto; }
</style>
 
<!--[if lte IE 7]>
<style>
.wrapper h3 a {margin: -1em 0 0 0; }
</style>
<![endif]-->
 
</head>
<body>
<div class="wrapper">
<h3>Contact Details
<a href="#" class="action button">Update</a>
</h3>
</div>
</body>
</html>