1

只是做一个小的 PHP 任务,我在其中使用框架来分隔用户界面。

框架本身工作正常,但是我定义为 150,700,200 的三列似乎不遵守设定的尺寸,而是选择占据整个屏幕的一部分。

有人有什么建议吗?

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="CSS/QBStyle.css" type="text/css" />
<title>Quality Books</title>
</head>
<frameset rows="180,*", frameborder="no", framespacing="0">
    <frame src="Frames/Header.php" />
    <frameset cols="150,700,200", frameborder="no", framespacing="0">
        <frame src="Frames/Navigation.php"/>
        <frame src="Introduction.php" name="contentframe"/>
        <frame name="sidebar"/>
    </frameset>
</frameset>
</html>
4

0 回答 0