Created
April 6, 2011 16:30
-
-
Save droot/905984 to your computer and use it in GitHub Desktop.
color box main HTML implementation
This file contains hidden or 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
<div id="config-input" style="padding: 20px;"> | |
<div data-role="fieldcontain"> | |
<label for="text" >Enter Color Value (ex. red, green) :</label> | |
<input id="color-input" type="text" value="blue"> </input> | |
</div> | |
<div data-role="fieldcontain"> | |
<label for="text" >Enter Width of the box (ex. 50, 70) :</label> | |
<input id="width-input" type="text" value="100"> </input> | |
</div> | |
</div> | |
<ul id="color-boxes" style="display: inline; list-style-type:none;"> | |
</ul> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment