Forum Moderators: not2easy
<html>
<head>
<style>
div{
border:1px solid red;
width:498px;
height:500px;
overflow:auto;
}
.row {
width:496px;
height:248px;
}
.cell {
width:122;
height:246px;
float:left;
}
</style>
</head>
<body>
<div>
<div class="row">
<div class="cell">me</div>
<div class="cell">me</div>
<div class="cell">me</div>
<div class="cell">me</div>
</div>
<div class="row">
</div>
</div>
</body>
</html>
anyone have an idea on how to make that div stay put?
<html>
<head>
<style>
div{
border:1px solid red;
width:498px;
height:500px;
overflow:auto;
}
.row {
width:496px;
height:248px;
overflow:hidden;
}
.cell {
width:124px;
height:248px;
float:left;
border:none;
overflow:hidden;
}
.inner {
width:122;
height:246px;
}
</style>
</head>
<body>
<div>
<div class="row">
<div class="cell"><div class="inner">me</div></div>
<div class="cell"><div class="inner">me</div></div>
<div class="cell"><div class="inner">me</div></div>
<div class="cell"><div class="inner">me</div></div>
</div>
<div class="row">
</div>
</div>
</body>
</html>
Thanks again