Created
October 6, 2011 12:26
-
-
Save watershed/1267285 to your computer and use it in GitHub Desktop.
Management styling in IE7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- The nested structure is at present like this --> | |
<div class="panel vcard" id="[hcard-forename-surname]"> | |
<div class="header"> | |
<h2 class="fn h3">[Forename] [Surname]</h2> | |
<div class="title">[Job title]</div> | |
</div> | |
<div class="figure left1of3"> | |
<img alt="[Forename] [Surname]" src="[image_url]" class="photo"> | |
</div> | |
<div class="bio"> | |
<p>Bio text goes here… | |
<!-- But to render as intended in IE7 it needs to be like this --> | |
<div class="panel vcard" id="[hcard-forename-surname]"> | |
<div class="header"> | |
<h2 class="fn h3">[Forename] [Surname]</h2> | |
<div class="title">[Job title]</div> | |
</div> | |
<div class="bio"> | |
<div class="figure left1of3"> | |
<img alt="[Forename] [Surname]" src="[image_url]" class="photo"> | |
</div> | |
<p>Bio text goes here… |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment