Metti il margin al body e poi crei al suo interno il div fluido

css:
codice:
body, html {
	margin: 10px;
	padding: 0;
	border: 0;
	text-align: center;
}

.fluido {
	width: 100%;
	background: #ff0000;
}
html:
codice:
<html>
<head>

<title>prova</title>

<style type="text/css" media="all">@import "default.css";</style>

</head>

<body>

<div class="fluido">
prova
</div>

</body>
</html>
Bye