是否可以在标题容器全屏宽度内制作div?

时间:2014-02-17 15:31:45

标签: html css

我为我们公司制作的现有网站设计了新设计。它在容器内有导航按钮,位于标题容器内。

在新设计中,此导航栏具有全屏宽度。

是否可以在不更改html代码的情况下执行此操作? (因为他们告诉我不要触摸HTML。)

我希望我的问题足够明确。

/编辑。我只需要使用css代码。

.header_div_button_container {
    float: left;
    margin-left: -131px;
    margin-right: 0;
    margin-top: 130px;
}
.homepage .header_div_button_container {
    margin-left: -137px;
}
.header_div_button {
    background-color: #034ea2;
    color: #FFFFFF;
    float: left;
    font-size: 11px;
    font-weight: bold;
    height: 16px;
    padding-top: 10px;
    text-align: center;
    width: 110px;
}

这是我得到的css的一小部分。 html主要是由我们使用的cms创建的,对于stackoverflow来说它实际上是不可读的。

我希望你能做点什么。

1 个答案:

答案 0 :(得分:1)

假设有这样的结构

<强> HTML

<header>

  <div class="inner"></div>

</header>

您的 CSS 可能如下所示:

.inner {
  height:100px;
  max-width:1100px;
  margin:0 auto;
  background-color: blue;
  position: relative;

}
.inner:before, .inner:after {
  content: "";
  position: absolute;
  background-color: lightblue;
  top: 0;
  bottom: 0;
  width: 9999px;   /* some huge width */
  z-index:-2;
} 

.inner:before {
  right: 100%; 
}
inner:after {
  left: 100%;

}

Codepen Demo

基础文章:http://css-tricks.com/full-browser-width-bars/