html - 我试图将导航栏中的链接向右移动 160 像素,但我做不到

标签 html css width navigationbar

这是css正在使用

    @import url(http://fonts.googleapis.com/css?family=Open+Sans:700);
    #cssmenu {
    background: #f96e5b;
    width: auto;
    }
    #cssmenu > ul {
    display:inline-block;
    margin: 0 auto;
    padding: 0;
    line-height: 1;
    text-align: 160px;
    zoom: 1;
    }
    #cssmenu ul:after {
    content: " ";
    display: block;
    font-size: 0;
    height: 0;
    clear: both;
    visibility: hidden;
    }
    #cssmenu ul li {
    display: inline-block;
    padding: 0;
    margin: 0;
    }
#cssmenu.align-right ul li {
  float: right;
}
#cssmenu.align-center ul {
  text-align: center;
}
#cssmenu ul li a {
  color: #ffffff;
  text-decoration: none;
  display: block;
  padding: 15px 25px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  position: relative;
  -webkit-transition: color .25s;
  -moz-transition: color .25s;
  -ms-transition: color .25s;
  -o-transition: color .25s;
  transition: color .25s;
}
#cssmenu ul li a:hover {
  color: #333333;
}
#cssmenu ul li a:hover:before {
  width: 100%;
}
#cssmenu ul li a:after {
  content: "";
  display: block;
  position: absolute;
  right: -3px;
  top: 19px;
  height: 6px;
  width: 6px;
  background: #ffffff;
  opacity: .5;
}
#cssmenu ul li a:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background: #333333;
  -webkit-transition: width .25s;
  -moz-transition: width .25s;
  -ms-transition: width .25s;
  -o-transition: width .25s;
  transition: width .25s;
}
#cssmenu ul li.last > a:after,
#cssmenu ul li:last-child > a:after {
  display: none;
}
#cssmenu ul li.active a {
  color: #333333;
}
#cssmenu ul li.active a:before {
  width: 100%;
}
#cssmenu.align-right li.last > a:after,
#cssmenu.align-right li:last-child > a:after {
  display: block;
}
#cssmenu.align-right li:first-child a:after {
  display: none;
}
@media screen and (max-width: 768px) {
  #cssmenu ul li {
    float: none;
    display: block;
  }
  #cssmenu ul li a {
    width: 100%;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-bottom: 1px solid #fb998c;
  }
  #cssmenu ul li.last > a,
  #cssmenu ul li:last-child > a {
    border: 0;
  }
  #cssmenu ul li a:after {
    display: none;
  }
  #cssmenu ul li a:before {
    display: none;
  }
}

我使用的html如下

    <div id='cssmenu'>
<ul>
   <li class='active'><a href='index.html'><span>Home</span></a></li>
   <li><a href='#'><span>Products</span></a></li>
   <li><a href='#'><span>About</span></a></li>
   <li class='last'><a href='#'><span>Contact</span></a></li>
</ul>
</div>

当我使用此代码时,我的网站导航栏应用全宽,导航栏上的链接位于左端。我想将导航栏上的链接向右移动 160px。

我的网站 http://logansdroids.com

最佳答案

text-align 不接受值是 pxs。

使用这个:

  #cssmenu > ul {
  display: inline-block;
  margin: 0 auto;
  padding: 0;
  line-height: 1;
  margin-left: 160px;
  zoom: 1;
}

关于html - 我试图将导航栏中的链接向右移动 160 像素,但我做不到,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30965609/

相关文章:

html - 当内容溢出页面时使非环绕 div 展开

html - 如何防止文本超出元素范围?

html - Style Rails collection_check_boxes

CSS 第一个和最后一个子元素

html - 对齐对象和按钮

css - figcaption 标签在 figure 标签中图像上的居中和对齐宽度

html - 长 URL 的 CSS 溢出

html - 如何将 HTML 电子邮件中的 GIF 与不支持的客户端的不同图像交换

HTML 垂直对齐 float :right element

javascript - 如何让元素后面的滚动条