page: Improve compatibility with dillo

Use the CSS width attribute instead of the HTML one for images.
This commit is contained in:
Markus Koch 2017-08-17 18:03:35 +02:00
parent 01a6042468
commit b1a356fcf5
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@
}
function addEntry($title, $preview, $link, $description) {
//echo '<tr><td colspan="2"><h3>' . $title . '</h3></td></tr>';
echo '<tr><td style="border-left:2px solid blue;"><a href="' . $link . '"><h3>' . $title . '</h3><img class="previewImage" width=320px src="' . $preview . '"></a></td><td style="border-right:2px solid blue;"><h3>&nbsp;</h3><br>' . $description . '</td></tr><tr><td>&nbsp;</td></tr>';
echo '<tr><td style="border-left:2px solid blue;"><a href="' . $link . '"><h3>' . $title . '</h3><img class="previewImage" style="width:320px" src="' . $preview . '"></a></td><td style="border-right:2px solid blue;"><h3>&nbsp;</h3><br>' . $description . '</td></tr><tr><td>&nbsp;</td></tr>';
}
function endEntry() {
echo '</table></details></div><hr class="postSeparator">';