Zitat:
Zitat von chunky Code: <style type="text/css">
.footerbar{
height:3px;
background-color:#999999;
}
</style>
//html:
<div class="footerbar"></div>
|
Ich denke overflow dürfte dein Freund sein:
Code:
<style type="text/css">
.footerbar{
height:3px;
background-color:#999999;
overflow: hidden;
}
</style>
//html:
<div class="footerbar"></div>