Hide scroll bar

This commit is contained in:
Patrick McGuire
2021-10-22 17:57:39 -04:00
parent 464dd646af
commit a171e6a8eb
+7 -6
View File
@@ -163,9 +163,11 @@ $mysqli->close();
td { td {
font-weight: lighter; font-weight: lighter;
} }
body::-webkit-scrollbar {
display:none
}
</style> </style>
</head> </head>
<body style="background-color: rgb(119, 196, 135);background-image: linear-gradient(to top, rgb(119, 196, 135),black;"> <body style="background-color: rgb(119, 196, 135);background-image: linear-gradient(to top, rgb(119, 196, 135),black;">
<section> <section>
@@ -215,7 +217,7 @@ while($rows=$specieslist ->fetch_assoc())
<table> <table>
<tr> <tr>
<th>Species</th> <th>Species</th>
<th>Number of Detections</th> <th>Detections</th>
</tr> </tr>
<?php // LOOP TILL END OF DATA <?php // LOOP TILL END OF DATA
while($rows=$speciestally ->fetch_assoc()) while($rows=$speciestally ->fetch_assoc())
@@ -236,8 +238,8 @@ while($rows=$speciestally ->fetch_assoc())
<table> <table>
<tr> <tr>
<th>Time</th> <th>Time</th>
<th>Sci_Name</th> <th>Scientific Name</th>
<th>Com_Name</th> <th>Common Name</th>
<th>Confidence</th> <th>Confidence</th>
<th>Lat</th> <th>Lat</th>
<th>Lon</th> <th>Lon</th>
@@ -270,7 +272,6 @@ while($rows=$mosttable ->fetch_assoc())
?> ?>
</table> </table>
</section> </section>
</body> </div>
</html> </html>