因为你是初学者。我会直截了当。以下是您的代码的提取。我使用了内部样式表。您的示例正在使用外部样式表。使用 float 属性,您可以将其设置为左右。这里使用 float:left 将一个 div 向左点亮,float:right 将另一个 div 向右点亮。每个打开的标签都必须是关闭的标签。
<head>
</head>
<!--Internal style sheet-->
<style>
.left{
float:left;
}
.right{
float:right;
}
</style>
<body>
<div id="wrapper" >
<div class="left">
<p class="t0">lorum itsum left</p>
</div>
<div class="right">
<p class="t0">lorum itsum right</p>
</div>
</div>
</body>
</html>
附加说明:如果要调整左右 div 的大小,请在样式表中使用宽度。请参阅下面的更新样式表。我将左侧 div 宽度设置为屏幕宽度的 80%,右侧宽度设置为 20%。(总计应为 100%)。相应调整。背景色用于设置div的背景色。
.left{
float:left;
background-color:powderblue;
width:80%;
}
.right{
float:right;
width:20%;
background-color:yellow;
}