如何把这个html程序改成流体布局

来源:百度知道 编辑:UC知道 时间:2024/07/04 10:32:36
这是原来的程序
<html>
<head>
<style>
.line {
position:relative;
margin:10px 10%;
width:80%;
font-size:20px;
}
.cell {
position:absolute;
top:0px;
left:0px;
width:200px;
border:1px solid #000;
background-color:#ddd;
color:#555;
}
</style>
</head>
<body>

<div class="line">
<div class="cell">
By Zach Spear Customers won't stop buying products from fundamentally sound Apple just because its luminary is taking a breather on the sidelines, investment bank Piper Jaffray argues in a new report issued Wednesday evening.
</div>
<div class="cell" style="left:210px;">
United Nations chief Ban Ki-Moon is heading for talks with Israeli leaders, amid signs of progress in efforts to secure a ceasefire in the Gaza Strip.
</div>
<

替换你的style就行了
<style>
.line {
margin:10px 10%;
width:100%;
font-size:20px;
}
.cell {
width:120px; margin:9px;
border:1px solid #000;
background-color:#ddd;
color:#555;
float:left;
}
</style>