View Single Post
Old 10-24-2012, 09:42 AM   PM User | #3
ManuelVRC
New Coder

 
Join Date: Sep 2011
Location: Seveso, Italy
Posts: 15
Thanks: 1
Thanked 0 Times in 0 Posts
ManuelVRC is an unknown quantity at this point
This is a snippet of my HTML
Code:
<body>
		<header>
			<hgroup>
				<h1>space web design</h1>
			</hgroup>
			<nav>
				<ul>
					<li>Home</li>
					<li>Portfolio</li>
					<li>Contact me</li>
				</ul>
			</nav>
		</header>
	</body>
and this is the css:
Code:
header{
	text-align: center;
}
header h1{
 	width: 32.94289897510981%; /*450*/
	font-family: 'null', sans-serif;
	font-size: 90px;
	margin: 0 auto;
}
nav{
	position: relative;
	top: -18.30161054172767%; /* -250 / 1366 */
	left: -18.30161054172767%; /* -250 / 1366 */
}
ManuelVRC is offline   Reply With Quote