0

我在 css 中有这组标签:

/*tabs*/
.tabs {
  position: relative;
  min-height: 200px;
  clear: both;
  margin: 25px 0;
}

.tab {
  float: left;
}

.tab label {
  background: #eee;
  padding: 10px;
  margin-left: -1px;
  position: relative;
  left: 1px;
}

.tab [type=radio] {
  display: none;
}

.tab-content {
  position: absolute;
  top: 28px;
  left: 0;
  background: #f7faff;
  right: 0;
  bottom: 0;
  padding: 20px;
  border: 1px solid red;
}

[type=radio]:checked ~ label {
  background: white;
  border-bottom: 1px solid white;
  z-index: 2;
}

[type=radio]:checked ~ label ~ .tab-content {
  z-index: 1;
}

从这里:http ://css-tricks.com/functional-css-tabs-revisited/

我怎样才能让它们垂直堆叠?Css 不是我的专业领域,我想在我玩弄我目前正在使用的东西时在这里问。我试图保留纯 css 实现,但将选项卡垂直堆叠到左侧或右侧。

4

1 回答 1

1

选项卡是 div,因此是块级元素,如果您删除,它们会自然堆叠

.tab {
  float: left;
}
于 2012-05-09T20:54:07.290 回答