修复另一行

时间:2016-01-16 18:05:58

标签: html css twitter-bootstrap

我想在页面的最顶部创建一行,并在另一行中悬停前一行。我们的想法是在第一行创建两列 - col-md-3col-md-9,第二行是在这两列之间应用图像,因此行有col-md-2,{{1 (图像之间),col-md-2。它应该是这样的:

enter image description here

我设法创建了它,但它之间的框仍未修复:

col-md-8

我该怎么做?

1 个答案:

答案 0 :(得分:1)

你不必使用bootstrap,你可以使用css:

div.container
{
  width:100%;
  position:fixed;
  background-color:red;
  height:100px;
}
div.img
{
  margin:auto;
  width:80%;
  padding:5px;
  text-align:center;
}

如果您查看fiddle,则可以更好地理解它。