在不使用 css 或 table 的情况下帮助 div 中的新手获取 php 或 html。
尝试使用具有以下行为的 div 执行此 4 x 列,2 x 行
// [.....adjustable....][fixed][fixed][fixed]
// [.....adjustable....][fixed][fixed][fixed]
以下是我的代码----------------------------------------------------
<form action="welcome.php" method="get">
<div style="position: relative; width: 100%; ">
<div id="left" style="position:relative;float:left;width:68%;"> left </div>
<div id="right" style="float:left;width:13%;"> Name: </div>
<div id="right2" style="float:left;width:13%;"> Age: </div>
<div id="right3" style="float:left;width:6%;"></div>
</div>
<div style="position: relative; width: 100%; ">
<div id="left2" style="position:relative;float:left;width:68%;"> left2 </div>
<div id="right4" style="float:left;width:13%;"> <input type="text" name="name"></div>
<div id="right5" style="float:left;width:13%;"> <input type="text" name="age"></div>
<div id="right6" style="float:left;width:6%;"> <input name="submit" type="submit"></div>
</div>
68% 等于我屏幕上的 860 像素。如果它转到其他屏幕分辨率,它应该会改变。我尝试将 68% 到 100% 和另一个 id=right 的 div 设置为 style="position:fixed..." 但它只是搞砸了,把所有东西都放在左边。