html - Unwanted space on left side of header -



html - Unwanted space on left side of header -

i have spacing on left side of header having troubles getting rid of. if can help me out appreciate it. here html , css below.

html

<!doctype html> <html> <head lang="en"> <meta charset="utf-8"> <link rel="stylesheet" href="style.css"/> <title></title> </head> <body> <header> <div id="logo"></div> <nav> <ul> <li><a href="index.html">home</a></li> <li><a href="about.html">about me</a></li> <li><a href="portfolio.html">portfolio</a></li> <li><a href="blog.html">blog</a></li> <li><a href="contact.html">contact</a></li> </ul> </nav> </header> </body> </html>

css

body{ width: 100%; } header{ margin: 0; padding: 0; width: 100%; height: 77px; background: #cccccc; } #logo{ float: left; } nav{ float: left; } ul { list-style-type: none; margin: 0; padding: 0; } li{ display: inline; }

i had add together margin:0 body in css.

html css

Comments

Popular posts from this blog

formatting - SAS SQL Datepart function returning odd values -

c++ - Apple Mach-O Linker Error(Duplicate Symbols For Architecture armv7) -

php - Yii 2: Unable to find a class into the extension 'yii2-admin' -