tr ~ tr > td {
border-top: 1px dashed black;
}
td {
padding: 5px 2px;
}
tr {
background-color: gray;
}
table {
border-spacing: 0px;
}
var img = new Image();
img.onload = function(){
var height = img.height;
var width = img.width;
// code here to use the dimensions
}
img.src = url;
while($weblist = mysqli_fetch_array ($list)) {
$selected = $weblist['name'] == $_POST['wslist'] ? 'selected' : '';
echo "<option $selected value = \"{$weblist['name']}\">{$weblist['name']}</option>";
}