|
|
|
| Этот кусок выводиться в одной строчке (нужно с новой строки)! Как правильно сделать вывод?
<div >
<div style="position: absolute; left: 40; width=20">Line1 </div>
<div style="position: absolute; left: 60; width=20">model1 </div>
<div style="position: absolute; left: 80; width=20">rrrr </div>
<div style="position: absolute; left: 100; width=20">56 </div>
<div style="position: absolute; left: 120; width=20">green </div>
<div style="position: absolute; left: 140; width=20">23 </div>
<div style="position: absolute; left: 160; width=20">34 </div>
<div style="position: absolute; left: 180; width=20">45 </div>
<div style="position: absolute; left: 200; width=20">56 </div>
<div style="position: absolute; left: 220; width="> </div>
</div>
<div >
<div style="position: absolute; left: 40; width=20">Line1 </div>
<div style="position: absolute; left: 60; width=20">model1 </div>
<div style="position: absolute; left: 80; width=20">rrrr </div>
<div style="position: absolute; left: 100; width=20">56 </div>
<div style="position: absolute; left: 120; width=20">green </div>
<div style="position: absolute; left: 140; width=20">5 </div>
<div style="position: absolute; left: 160; width=20">5 </div>
<div style="position: absolute; left: 180; width=20">5 </div>
<div style="position: absolute; left: 200; width=20">5 </div>
<div style="position: absolute; left: 220; width="> </div>
</div>
|
| |
|
|
|
|
|
|
|
для: Саша
(31.08.2006 в 14:39)
| | Для всех внутренних поставить display:inline | |
|
|
|
|
|
|
|
для: 12345
(31.08.2006 в 15:08)
| | тавлицу рисуете?
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251">
<title>Untitled Document</title>
<style>
.line{
float:left;
border:1px solid red;
}
.blok{
position:relative;
clear:both;
}
.col1{
width:100px
}
.col2{
width:70px
}
.col3{
width:60px
}
.col4{
width:200px
}
.col5{
width:110px
}
</style>
</head>
<body>
<div class="blok">
<div class="line col1">sas</div>
<div class="line col2">sas</div>
<div class="line col3">sas</div>
<div class="line col4">sas</div>
<div class="line col5">sas</div>
</div>
<div class="blok">
<div class="line col1">sas</div>
<div class="line col2">sas</div>
<div class="line col3">sas</div>
<div class="line col4">sas</div>
<div class="line col5">sas</div>
</div>
</body>
</html>
|
| |
|
|
|