如何添加侧边栏?

时间:2014-09-24 18:26:54

标签: html css

这里是post.html的css:

/* Space out content a bit */
body {
  padding-top: 20px;
  padding-bottom: 20px;
}
/* Everything but the jumbotron gets side spacing for mobile first views */
.header,
.marketing,
.footer {
  padding-right: 15px;
  padding-left: 15px;
}

/* Custom page header */
.header {
  border-bottom: 1px;
}
/* Make the masthead heading the same height as the navigation */
.header h3 {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 40px;
}

/* Custom page footer */
.footer {
  padding-top: 19px;
  color: #777;
  border-top: 1px solid #e5e5e5;
}

/* Customize container */
@media (min-width: 768px) {
  .container {
    max-width: 60%;
  }
}
.container-narrow > hr {
  margin: 30px 0;
}

.jumbotron {
  border-bottom: 1px solid #e5e5e5;
}
.jumbotron .btn {
  padding: 14px 24px;
  font-size: 21px;
}

.marketing {
  margin: 40px 0;
}
.marketing p + h4 {
  margin-top: 28px;
}

@media screen and (min-width: 768px) {
  /* Remove the padding we set earlier */
  .header,
  .marketing,
  .footer {
    padding-right: 0;
    padding-left: 0;
  }
  /* Space out the masthead */
  .header {
    margin-bottom: 30px;
  }
  /* Remove the bottom border on the jumbotron for visual effect */
  .jumbotron {
    border-bottom: 0;
  }
}

如何添加侧边栏? max-width属性负责页面中心的主要内容。如何向侧面添加内容? Float:右边没有正常工作,将内容放在中心内容的右侧,而不是页面右侧。

1 个答案:

答案 0 :(得分:0)

我不确定边栏是指隐藏菜单还是右栏。

右栏:

  <div id="rightColumn">
        stuff goes here...
  </div>

div#rightColumn 
{
  float: right; 
  right: 15px;
  width: 150px;
}

......是一种方式。右栏div位于HTML主体中,位于任何主要内容区域div内;我怀疑你把它放在里面,这会导致你看到的行为。

如果是隐藏菜单,则需要使用Javascript;见http://semantic-ui.com/modules/sidebar.html#/examples。但是你没有将它作为标签,所以我认为你的意思是右列或左列。