Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
/* give your table a top and bottom border */
#myTable {
border-top: 1px solid black;
border-bottom: 1px solid black;
}
/* give your cells a left and right border */
#myTable td {
border-left: 1px solid black;
border-right: 1px solid black;
}
<!-- do not specify a border in your table tag //-->
<table id="myTable">...</table>
<link rel="stylesheet" href="styles.css" type="text/css" media="all" />
<style type="text/css">
...
</style>