Topic: horizontal website
Im making a website only with horizontal scroll on the "content" frame (http://inginfinitive.pt/temp/)
For some reason on firefox, the box inside the content of any link has a margin in top and on the bottom, and in safari its ok, but when the page has no scroll. On the bottom I have a margin.
Can someone help me? I already have all margin: 0px
css for the iframe:
#content {
width: 100%;
height: 360px;
margin: 0px;
padding: 0px;
margin-bottom: -1px;
background-color: #ffffff;
z-index: 0px;
}html and css of a link inside the iframe:
<style type="text/css">
body {
margin: 0px;
padding: 0px;
}
#wrapper {
width: auto;
overflow: auto;
}
#wrapper table {
width: 100%;
border: 0px;
padding: 0px;
}
#wrapper .front {
width: 400px;
height: 350px;
color: #464646;
padding-left: 10px;
padding-right: 10px;
margin: 0px;
border-right: 4px solid #333333;
background-color: #ECECEC;
}
#wrapper .front h1 {
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 20px;
font-style: italic;
padding-top: 5px;
padding-left: 5px;
padding-bottom: 5px;
}
#wrapper .front p {
width: 390px;
margin: 2px;
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 12px;
font-style: italic;
}
</style>
<body>
<div id="wrapper">
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td>
<div class="front">
<h1>Work</h1>
<p>Identity</p>
<p>Print</p>
<p>Web</p>
<p>Advertising</p>
</div>
</td>
</tr>
</table>
</div>
</body>