Created
December 11, 2013 18:35
-
-
Save kshyju/7915908 to your computer and use it in GitHub Desktop.
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
body | |
{ | |
font-family: 'WOL_SB','Segoe UI Semibold','Segoe UI',Tahoma,Helvetica,sans-serif; | |
} | |
#tblAdd | |
{ | |
margin:0 auto; | |
margin-top:90px; | |
font-size:16px; | |
border:1px solid #CCCCCC; padding-right:24px;padding-left:24px; | |
} | |
#tblAdd th | |
{ | |
padding:10px; | |
border-bottom:1px solid #CCCCCC; | |
font-size:17px; | |
} | |
#tblAdd td | |
{ | |
padding:12px; | |
border-bottom:1px solid #CCCCCC; | |
} |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset=utf-8 /> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
<div> | |
<table id="tblAdd"> | |
<tr> | |
<th>Input/Output</th> | |
<th>Level</th> | |
<tr> | |
<td>Input A</td> | |
<td><select><option>1</option></td> | |
</tr> | |
<tr> | |
<td>Input B</td> | |
<td><select><option>1</option></td> | |
</tr> | |
<tr> | |
<td>Input C</td> | |
<td><select><option>1</option></td> | |
</tr> | |
<tr> | |
<td>Input D</td> | |
<td><select><option>1</option></td> | |
</tr> | |
<tr> | |
<td>Input E</td> | |
<td><select><option>1</option><option>2</option></td> | |
</tr> | |
</table> | |
<p> | |
<button>Save</button> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment