您可以将图像输出为div的列表,或者只是div,然后使用CSS在两列中显示图像。您的布局不应该是硬连线。
div.gallery {
width: 650px;
}
div.gallery ul li {
list-style: none;
float: left;
}
div.image {
height: 500px;
width: 300px;
}
-
Some title
-
Another title
-
Another title
-
Another title
-
Another title
您的代码应该类似于:
include_once("config.php");
$result = mysql_query("SELECT * FROM images");
while($res = mysql_fetch_array($result)) {
?>
}
?>