如何使div扩展容器外的整个宽度? (Twitter Bootstrap)

时间:2013-07-26 13:34:48

标签: css html twitter-bootstrap width

http://jsfiddle.net/NRN48/(我不希望蓝色导航在左侧延伸,只在右侧延伸。)

我正在尝试使用before伪元素将我的导航菜单扩展到右侧的容器之外。顺便说一句,我正在使用Twitter Bootstrap网格

这是我的尝试:

nav:after {
   background-color: #12499c;
   content: " ";
   overflow-x: hidden;
   position: absolute;
   top: 0px;
   left: 25%;
   height: 60px;
   width: 100%;
   z-index: -1;
   display: inline;

使用我的笔记本电脑查看它看起来是正确的,但在宽屏幕上 - 它甚至不是很接近。有什么想法吗?

0 个答案:

没有答案