Skip to content

Instantly share code, notes, and snippets.

@kshyju
Created December 11, 2013 18:35
Show Gist options
  • Save kshyju/7915908 to your computer and use it in GitHub Desktop.
Save kshyju/7915908 to your computer and use it in GitHub Desktop.
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;
}
<!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