Skip to content

Instantly share code, notes, and snippets.

@Evshved
Last active December 25, 2015 20:19
Show Gist options
  • Save Evshved/7033811 to your computer and use it in GitHub Desktop.
Save Evshved/7033811 to your computer and use it in GitHub Desktop.
html tables
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<style type="text/css">
TD {
vertical-align: top; /* Выравнивание по верхнему краю ячейки */
}
#col1 {
width: 40%; /* Ширина первой колонки */
}
#col2 {
width: 30%; /* Ширина второй колонки */
}
#col3 {
width: 40%; /* Ширина третьей колонки */
}
</style>
</head>
<body>
<table width="90%" cellpadding="5" cellspacing="0">
<tr>
<td id="col1"> <center>Колонка 1</center> </td>
<td id="col2"><center>Колонка 2</center> </td>
<td id="col3"><center>Колонка 3</center> </td>
</tr>
</table><meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment