html - Positioning elements in same navigation bar (left/center/right) -
    i'm working on simple navigation bar logo on left, image @ center , links on right.   i want on 1 line, next each other, reason don't manage links on same line rest.   you can see work here . code:       html {    height: 100%;    margin: 0;    padding: 0;  }  body {    height: 100%;    margin: 0;    background-color: #d8d8d8;    color: white;    border: 0;    padding: 0;    font-family: "helvetica neue", arial, helvetica, sans-serif;  }  nav {    background-color: #888888;  }  #links {    height: 30px;    padding: 10px;    margin: 0;  }  #links li {    text-align: center;    margin: 0;    height: 30px;    padding: 0;    padding-left: 10px;    padding-right: 10px;    list-style-type: none;    display: inline;  }  #container {    min-width: 624px;    min-height: 100%;    position: relative;  }  * {    margin: 0;    padding: 0;  }  #links {    overflow: auto;    list-style-type: none;  }  #links li {    height: 25px;    float: right;    margin-right: 0;    border-ri...