richrich05
Programmer
I know this is simple but i've been beating my head into the walk trying remember and figure it out. How do i create a border around rows that are returned from the user's request?
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.
<html>
<head>
<style>
.myTable{
border: 1px solid blue;
border-collapse: collapse;
}
.myTable td{
border-top: 1px solid blue;
border-bottom: 1px solid blue;
}
</style>
</head>
<body>
<table cellspacing="0" cellpadding="0" class="myTable">
<tr><td>A</td><td>B</td><td>C</td>
<tr><td>A</td><td>B</td><td>C</td>
<tr><td>A</td><td>B</td><td>C</td>
<tr><td>A</td><td>B</td><td>C</td>
<tr><td>A</td><td>B</td><td>C</td>
</table>