I need assistance with creating a section on a webpage that resembles a piece of paper, where there is content displayed on white background against a grey background. Here's what my CSS currently looks like:
body
{
background:grey;
}
.page
{
display: table;
background:white;
width:100%;
margin: 0px 50px;
}
This is how my php file is structured:
<html>
<head>
<link rel="stylesheet" type="text/css" href="styles.css"/>
</head>
<body>
<div class="page">
hello this is the content
</div>
</body>
</html>
However, when I view the page in Firefox, the right margin extends all the way to the edge of the screen instead of being properly padded like the left side...