Created
July 25, 2008 19:16
-
-
Save ngerakines/2497 to your computer and use it in GitHub Desktop.
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
<style> | |
div.row { | |
clear: both; | |
padding-top: 10px; | |
} | |
div.row span.label { | |
float: left; | |
width: 100px; | |
text-align: right; | |
} | |
div.row span.formw { | |
float: right; | |
width: 335px; | |
text-align: left; | |
} | |
</style> | |
<div style="width: 350px; background-color: #cc9; | |
border: 1px dotted #333; padding: 5px; | |
margin: 0px auto";> | |
<form> | |
<div class="row"> | |
<span class="label">Name:</span><span | |
class="formw"><input type="text" size="25" /></span> | |
</div> | |
<div class="row"> | |
<span class="label">Age:</span><span | |
class="formw"><input type="text" size="25" /></span> | |
</div> | |
<div class="row"> | |
<span class="label">Shoe size:</span><span | |
class="formw"><input type="text" size="25" /></span> | |
</div> | |
<div class="row"> | |
<span class="label">Comments:</span><span | |
class="formw"> | |
<textarea cols="25" rows="8"> | |
Go ahead - write something... | |
</textarea> | |
</span> | |
</div> | |
<div class="spacer"> | |
| |
</div> | |
</form> | |
</div> | |
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
<style> | |
div.float { | |
float: left; | |
} | |
div.float p { | |
text-align: center; | |
} | |
div.container { | |
border: 2px dashed #333; | |
background-color: #ffe; | |
} | |
div.spacer { | |
clear: both; | |
} | |
</style> | |
<div class="container"> | |
<div class="spacer"> | |
| |
</div> | |
<div class="float"> | |
<img src="image1.gif" width="100" height="100" | |
alt="image 1" /><br /> | |
<p>caption 1</p> | |
</div> | |
<div class="float"> | |
<img src="image2.gif" width="100" height="100" | |
alt="image 2" /><br /> | |
<p>caption 2</p> | |
</div> | |
<div class="float"> | |
<img src="image3.gif" width="100" height="100" | |
alt="image 3" /><br /> | |
<p>caption 3</p> | |
</div> | |
<div class="spacer"> | |
| |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment